adjusted positioning of the modern battle ship and set fullscreen mode to false

This commit is contained in:
Hanno Fleischer
2024-10-11 11:53:13 +02:00
parent 074b38540d
commit 22d827b074
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ settings.resolution.width=1200
settings.resolution.height=800
#
# Determines whether the application runs in full-screen mode.
settings.full-screen=true
settings.full-screen=false
#
# Enables or disables gamma correction to improve color accuracy.
settings.use-gamma-correction=true

View File

@@ -211,7 +211,7 @@ private Spatial createModernBattleship(Battleship ship) {
model.rotate(-HALF_PI, calculateRotationAngle(ship.getRot()), 0f);
model.scale(0.08f);
model.setLocalTranslation(0f, 0.25f, 0f);
model.setLocalTranslation(0f, 0.2f, 0f);
model.setShadowMode(ShadowMode.CastAndReceive);
return model;