Home | History | Annotate | Download | only in app

Lines Matching defs:fpsText

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);
149 fpsText.setText("Frames per second");
150 fpsText.setCullHint(showFps ? CullHint.Never : CullHint.Always);
151 guiNode.attachChild(fpsText);
164 statsView.setLocalTranslation(0, fpsText.getLineHeight(), 0);
175 fpsText.setCullHint(showFps ? CullHint.Never : CullHint.Always);
179 fpsText.setCullHint(CullHint.Always);
192 fpsText.setText("Frames per second: " + fps);
204 guiNode.detachChild(fpsText);