Skip to content
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
91a49ec
This is a very simple addition. It allows a person to set 3 variables…
bob0bob Nov 22, 2021
7bcba98
Merge branch 'master' of https://github.com/bob0bob/jmonkeyengine
bob0bob Nov 22, 2021
ce24716
formatting and comments changes.
bob0bob Nov 24, 2021
aef358f
jme3test.app.TestApplication hangs with LWJGL3 #1193
bob0bob Nov 24, 2021
1b0507e
Merge branch 'jMonkeyEngine:master' into master
bob0bob Nov 25, 2021
f0489b8
removing unwanted changes, since you can't do multiple pull requests …
bob0bob Nov 25, 2021
e5f608d
Merge branch 'master' of https://github.com/bob0bob/jmonkeyengine int…
bob0bob Nov 25, 2021
a5b0e37
formatting issues.
bob0bob Nov 25, 2021
26937ca
changed parameter naming to be more consistency with other items.
bob0bob Nov 25, 2021
3832d37
jme3test.app.TestApplication hangs with LWJGL3 #1193
bob0bob Nov 25, 2021
811493c
jme3test.app.TestApplication hangs with LWJGL3 #1193 (#3)
bob0bob Nov 25, 2021
db0d9ff
removing unwanted changes.
bob0bob Nov 25, 2021
5eb2690
AppSettings: enhance the new javadoc
stephengold Nov 30, 2021
72d008d
AppSettings: capitalize Window{X/Y}Position consistent w/other settings
stephengold Nov 30, 2021
f7c5ec7
LwjglWindow: convert tabs to spaces
stephengold Nov 30, 2021
4544d64
AppSettings: re-arrange @see tags in javadoc
stephengold Nov 30, 2021
0d28d62
Merge branch 'jMonkeyEngine:master' into master
bob0bob Dec 1, 2021
f600f23
Merge branch 'jMonkeyEngine:master' into master
bob0bob Dec 3, 2021
1398541
When run from the test chooser, TestIssue1120 in jme3-examples crashes:
bob0bob Dec 3, 2021
f4c6daf
remove unwanted commented out code.
bob0bob Dec 4, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
*/
public class TestIssue1120 extends SimpleApplication {

private static TestIssue1120 test;
private BulletAppState bulletAppState;
private final boolean physicsDebug = true;
private BitmapText speedText;
Expand All @@ -74,7 +73,7 @@ public class TestIssue1120 extends SimpleApplication {
private float bulletSpeed = 0.5f;

public static void main(String[] args) {
test = new TestIssue1120();
TestIssue1120 test = new TestIssue1120();
test.setSettings(new AppSettings(true));
test.settings.setFrameRate(60);
if (SKIP_SETTINGS) {
Expand Down Expand Up @@ -139,10 +138,10 @@ public void simpleInitApp() {

float lineHeight = testInfo[0].getLineHeight();
testInfo[0].setText("Camera move: W/A/S/D/Q/Z +/-: Increase/Decrease Speed");
testInfo[0].setLocalTranslation(5, test.settings.getHeight(), 0);
testInfo[0].setLocalTranslation(5, settings.getHeight(), 0);
guiNode.attachChild(testInfo[0]);
testInfo[1].setText("Left Click: Toggle pause Space: Restart test");
testInfo[1].setLocalTranslation(5, test.settings.getHeight() - lineHeight, 0);
testInfo[1].setLocalTranslation(5, settings.getHeight() - lineHeight, 0);
guiNode.attachChild(testInfo[1]);

speedText.setLocalTranslation(202, lineHeight * 1, 0);
Expand Down