diff --git a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/animation.html b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/animation.html index eff30f883..9be022861 100644 --- a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/animation.html +++ b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/animation.html @@ -321,7 +321,7 @@ This optional Listener enables you to respond to animation start and end events,
-The onAnimCycleDone() event is invoked when an animation cycle has ended. For non-looping animations, this event is invoked when the animation is finished playing. For looping animations, this even is invoked each time the animation loop is restarted. +The onAnimCycleDone() event is invoked when an animation cycle has ended. For non-looping animations, this event is invoked when the animation is finished playing. For looping animations, this event is invoked each time the animation loop is restarted.
diff --git a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/loading_screen.html b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/loading_screen.html index e4b3bf7e2..5136cfab2 100644 --- a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/loading_screen.html +++ b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/advanced/loading_screen.html @@ -9,7 +9,7 @@ There is a good tutorial about creating a nifty progress bar here:
-This example will the existing hello terrain as an example. +This example will use the existing hello terrain as an example. It will require these 2 images inside Assets/Interface/ (save them as border.png and inner.png respectively)
diff --git a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/beginner/hello_terrain.html b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/beginner/hello_terrain.html index 23178932e..b55cea567 100644 --- a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/beginner/hello_terrain.html +++ b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/beginner/hello_terrain.html @@ -102,8 +102,9 @@ public class HelloTerrain extends SimpleApplication { rootNode.attachChild(terrain); /** 5. The LOD (level of detail) depends on were the camera is: */ - TerrainLodControl control = new TerrainLodControl(terrain, getCamera()); - control.setLodCalculator( new DistanceLodCalculator(patchSize, 2.7f) ); // patch size, and a multiplier + List<Camera> cameras = new ArrayList<Camera>(); + cameras.add(getCamera()); + TerrainLodControl control = new TerrainLodControl(terrain, cameras); terrain.addControl(control); } } diff --git a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/appsettings.html b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/appsettings.html index f27567989..71576195f 100644 --- a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/appsettings.html +++ b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/appsettings.html @@ -26,7 +26,7 @@ Every class that extends jme3.app.SimpleApplication has properties that can be c }-Set the boolean in the AppSettings contructor to true if you want to keep the default settings for everything that you do not specify. Set this parameter to false if you want to specify each property yourself (you'll get an exception if you missed one). +Set the boolean in the AppSettings contructor to true if you want to keep the default settings for everything that you do not specify. Set this parameter to false if you want to change some of the settings, but otherwise want the application to load user settings from previous launches.
@@ -75,7 +75,7 @@ Depending on your graphic card, you may be able to set multisampling to higher v Set to false to deactivate vertical syncing (faster, but possible page tearing artifacts); can be deactivated during development.
Settings Property (Input) | Description | Default | setUseJoysticks(true) | Activate optional joystick support | false |
---|
Settings Property (Audio) | Description | Default | Switch Audio Renderer | OpenAL | |
---|---|---|---|---|---|
setStereo3D(true) | Enable 3D stereo. This feature requires hardware support from the GPU driver. See . | false | +setStereo3D(true) | Enable 3D stereo. This feature requires hardware support from the GPU driver. See . | false |
Settings Property (Branding) | Description | Default | This specifies the little a | setSettingsDialogImage("/path/to/splash.png") | A custom splashscreen image in the assets directory which is displayed when the settings dialog is shown. | "/com/jme3/app/Monkey.png" |
---|
Which ever method you choose, a Java-Application works on the main operating systems: Windows, Mac OS, Linux, Android. diff --git a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/headlessserver.html b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/headlessserver.html index ebe6ec753..ccefd3444 100644 --- a/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/headlessserver.html +++ b/sdk/jme3-core/javahelp/com/jme3/gde/core/docs/jme3/intermediate/headlessserver.html @@ -39,6 +39,7 @@ + @@ -53,6 +54,8 @@ + + - +
SimpleApplication Method | Purpose | The default first-person fly-by camera control. This de | setDisplayStatView(false); | A default SimpleApplication displays mesh statistics on the screen using the com.jme3.app.StatsView class. The information is valuable during the development and debugging phase, but for the release, you should hide the statistics HUD. |
---|
SimpleApplication Interface | Purpose | The default first-person fly-by camera control. This de | public void simpleRender(RenderManager rm) | Optional: Override this method to implement advanced modifications of the frameBuffer and scene graph. |
---|
-
app.setShowSettings(true);
to present the user with a splashscreen and display settings dialog when starting the game, or app.setShowSettings(false);
to hide the custom splashscreen. Set this boolean before calling app.start()
on the SimpleApplication.
+app.setShowSettings(true);
to present the user with a splashscreen and the built-in display settings dialog when starting the game; or use app.setShowSettings(false);
to hide the buil-in screen (in this case, you may want to provide a custom splashscreen and settings panel). Set this boolean before calling app.start()
in the main()
method of the SimpleApplication. See also AppSettings.
KEY_MPrints memory usage stats the out stream.
As long as useInput() is true, the default Flyby Cam is active. Then the following so-called "WASD" inputs are additionally available: @@ -304,7 +299,7 @@ As long as useInput() is true, the default Flyby Cam is active. Then the followi