T key had to be pressed 2x before worked in jme3test.terrain (4 files)

This commit is contained in:
Stephen Gold 2020-04-23 12:42:36 -07:00
parent d636049a6f
commit ceea055cc4
4 changed files with 8 additions and 8 deletions

View File

@ -177,7 +177,7 @@ public class TerrainTest extends SimpleApplication {
hintText = new BitmapText(guiFont, false);
hintText.setSize(guiFont.getCharSet().getRenderedSize());
hintText.setLocalTranslation(0, getCamera().getHeight(), 0);
hintText.setText("Hit T to switch to wireframe, P to switch to tri-planar texturing");
hintText.setText("Press T to toggle wireframe, P to toggle tri-planar texturing");
guiNode.attachChild(hintText);
}
@ -194,7 +194,7 @@ public class TerrainTest extends SimpleApplication {
public void onAction(String name, boolean pressed, float tpf) {
if (name.equals("wireframe") && !pressed) {
wireframe = !wireframe;
if (!wireframe) {
if (wireframe) {
terrain.setMaterial(matWire);
} else {
terrain.setMaterial(matRock);

View File

@ -234,7 +234,7 @@ public class TerrainTestAdvanced extends SimpleApplication {
hintText = new BitmapText(guiFont, false);
hintText.setSize(guiFont.getCharSet().getRenderedSize());
hintText.setLocalTranslation(0, getCamera().getHeight(), 0);
hintText.setText("Hit T to switch to wireframe, P to switch to tri-planar texturing");
hintText.setText("Press T to toggle wireframe, P to toggle tri-planar texturing");
guiNode.attachChild(hintText);
}
@ -255,7 +255,7 @@ public class TerrainTestAdvanced extends SimpleApplication {
public void onAction(String name, boolean pressed, float tpf) {
if (name.equals("wireframe") && !pressed) {
wireframe = !wireframe;
if (!wireframe) {
if (wireframe) {
terrain.setMaterial(matWire);
} else {
terrain.setMaterial(matTerrain);

View File

@ -158,7 +158,7 @@ public class TerrainTestAndroid extends SimpleApplication {
hintText = new BitmapText(guiFont, false);
hintText.setSize(guiFont.getCharSet().getRenderedSize());
hintText.setLocalTranslation(0, getCamera().getHeight(), 0);
hintText.setText("Hit T to switch to wireframe, P to switch to tri-planar texturing");
hintText.setText("Press T to toggle wireframe, P to toggle tri-planar texturing");
guiNode.attachChild(hintText);
}
@ -175,7 +175,7 @@ public class TerrainTestAndroid extends SimpleApplication {
public void onAction(String name, boolean pressed, float tpf) {
if (name.equals("wireframe") && !pressed) {
wireframe = !wireframe;
if (!wireframe) {
if (wireframe) {
terrain.setMaterial(matWire);
} else {
terrain.setMaterial(matRock);

View File

@ -81,7 +81,7 @@ public class TerrainTestModifyHeight extends SimpleApplication {
private TerrainQuad terrain;
Material matTerrain;
Material matWire;
boolean wireframe = true;
boolean wireframe = false;
boolean triPlanar = false;
boolean wardiso = false;
boolean minnaert = false;
@ -198,7 +198,7 @@ public class TerrainTestModifyHeight extends SimpleApplication {
public void onAction(String name, boolean pressed, float tpf) {
if (name.equals("wireframe") && !pressed) {
wireframe = !wireframe;
if (!wireframe) {
if (wireframe) {
terrain.setMaterial(matWire);
} else {
terrain.setMaterial(matTerrain);