Searched defs:fpsText (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DSimpleApplication.java76 protected BitmapText fpsText; field in class:SimpleApplication
213 // Some of the tests rely on having access to fpsText
216 fpsText = stateManager.getState(StatsAppState.class).getFpsText();
H A DStatsAppState.java60 protected BitmapText fpsText; field in class:StatsAppState
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
[all...]

Completed in 45 milliseconds