OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fpsText
(Results
1 - 8
of
8
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsAppState.java
60
protected BitmapText
fpsText
;
73
* so that the
fpsText
can be created before init. This
75
*
fpsText
... unfortunately.
79
this.
fpsText
= new BitmapText(guiFont, false);
83
return
fpsText
;
101
if (
fpsText
!= null) {
102
fpsText
.setCullHint(show ? CullHint.Never : CullHint.Always);
144
if (
fpsText
== null) {
145
fpsText
= new BitmapText(guiFont, false);
148
fpsText
.setLocalTranslation(0, fpsText.getLineHeight(), 0)
[
all
...]
SimpleApplication.java
76
protected BitmapText
fpsText
;
213
// Some of the tests rely on having access to
fpsText
216
fpsText
= stateManager.getState(StatsAppState.class).getFpsText();
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestCollisionListener.java
93
fpsText
.setText("You hit the box!");
TestGhostObject.java
115
fpsText
.setText("Overlapping objects: " + ghostControl.getOverlappingObjects().toString());
TestAttachGhostObject.java
127
fpsText
.setText("collide");
TestRagdollCharacter.java
227
fpsText
.setText(cam.getLocation() + "/" + cam.getRotation());
/external/jmonkeyengine/engine/src/test/jme3test/water/
TestSimpleWater.java
138
fpsText
.setText("Light Position: "+lightPos.toString()+" Change Light position with [U], [H], [J], [K] and [T], [G] Turn off water with [O]");
/external/jmonkeyengine/engine/src/test/jme3test/post/
TestDepthOfField.java
196
fpsText
.setText(""+hit.getDistance());
Completed in 381 milliseconds