From 0384fe54779053bfa7a9a1bf8a3b960d96ca11ea Mon Sep 17 00:00:00 2001 From: SkidRunner Date: Wed, 4 Jan 2017 12:34:02 -0600 Subject: [PATCH] jayfella commented 6 hours ago I would appreciate removing the presumed resolution and to display the settings page by default before merging. --- .../src/main/java/jme3test/games/RollingTheMonkey.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/jme3-examples/src/main/java/jme3test/games/RollingTheMonkey.java b/jme3-examples/src/main/java/jme3test/games/RollingTheMonkey.java index 1fd474cf2..47cd53daa 100644 --- a/jme3-examples/src/main/java/jme3test/games/RollingTheMonkey.java +++ b/jme3-examples/src/main/java/jme3test/games/RollingTheMonkey.java @@ -59,8 +59,6 @@ import com.jme3.scene.Spatial; import com.jme3.scene.shape.Box; import com.jme3.scene.shape.Sphere; import com.jme3.shadow.DirectionalLightShadowFilter; -import com.jme3.system.AppSettings; -import com.jme3.util.TempVars; import java.util.concurrent.Callable; /** @@ -97,14 +95,7 @@ public class RollingTheMonkey extends SimpleApplication implements ActionListene private static final String INPUT_MAPPING_RESET = "INPUT_MAPPING_RESET"; public static void main(String[] args) { - AppSettings settings = new AppSettings(true); - settings.setTitle(TITLE); - settings.setResolution(1440, 810); - settings.setFullscreen(false); - RollingTheMonkey app = new RollingTheMonkey(); - app.setShowSettings(false); - app.setSettings(settings); app.start(); }