mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-29 05:29:44 +01:00
fixed background location again
This commit is contained in:
parent
c5e7ef855e
commit
840658b590
@ -70,7 +70,7 @@ public class ChoosePartner extends Dialog {
|
|||||||
mainContainer.setLocalTranslation(
|
mainContainer.setLocalTranslation(
|
||||||
(app.getCamera().getWidth() - mainContainer.getPreferredSize().x) / 2,
|
(app.getCamera().getWidth() - mainContainer.getPreferredSize().x) / 2,
|
||||||
(app.getCamera().getHeight() + mainContainer.getPreferredSize().y) / 2,
|
(app.getCamera().getHeight() + mainContainer.getPreferredSize().y) / 2,
|
||||||
0
|
3
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,7 +95,8 @@ public class ChoosePartner extends Dialog {
|
|||||||
Vector3f dimens = dropdownContainer.getPreferredSize();
|
Vector3f dimens = dropdownContainer.getPreferredSize();
|
||||||
Vector3f dimens2 = playerSelector.getPopupContainer().getPreferredSize();
|
Vector3f dimens2 = playerSelector.getPopupContainer().getPreferredSize();
|
||||||
dimens2.setX( dimens.getX() );
|
dimens2.setX( dimens.getX() );
|
||||||
playerSelector.getPopupContainer().setPreferredSize(new Vector3f(200,200,5));
|
playerSelector.getPopupContainer().setPreferredSize(new Vector3f(200,200,3));
|
||||||
|
playerSelector.setLocalTranslation(0,0,5);
|
||||||
|
|
||||||
return dropdownContainer;
|
return dropdownContainer;
|
||||||
}
|
}
|
||||||
@ -121,7 +122,7 @@ public class ChoosePartner extends Dialog {
|
|||||||
lowerLeftMenu.addChild(cancelButton);
|
lowerLeftMenu.addChild(cancelButton);
|
||||||
|
|
||||||
// Position the container near the bottom-left corner
|
// Position the container near the bottom-left corner
|
||||||
lowerLeftMenu.setLocalTranslation(new Vector3f(120, 170, 3)); // Adjust X and Y to align with the bottom-left corner
|
lowerLeftMenu.setLocalTranslation(new Vector3f(120, 170, 5)); // Adjust X and Y to align with the bottom-left corner
|
||||||
app.getGuiNode().attachChild(lowerLeftMenu);
|
app.getGuiNode().attachChild(lowerLeftMenu);
|
||||||
|
|
||||||
|
|
||||||
@ -139,7 +140,7 @@ public class ChoosePartner extends Dialog {
|
|||||||
lowerRightMenu.addChild(confirmButton);
|
lowerRightMenu.addChild(confirmButton);
|
||||||
|
|
||||||
// Position the container near the bottom-right corner
|
// Position the container near the bottom-right corner
|
||||||
lowerRightMenu.setLocalTranslation(new Vector3f(app.getCamera().getWidth() - 320, 170, 3)); // X: 220px from the right, Y: 50px above the bottom
|
lowerRightMenu.setLocalTranslation(new Vector3f(app.getCamera().getWidth() - 320, 170, 5)); // X: 220px from the right, Y: 50px above the bottom
|
||||||
app.getGuiNode().attachChild(lowerRightMenu);
|
app.getGuiNode().attachChild(lowerRightMenu);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user