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 d5339a1ec0
commit 1284671d6f
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);
}
@ -193,7 +193,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);
}
@ -254,7 +254,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);
}
@ -174,7 +174,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;
@ -197,7 +197,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);