HomeSort by relevance Sort by last modified time
    Searched defs:guiNode (Results 1 - 8 of 8) sorted by null

  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestChangeAppIcon.java 69 guiNode.detachAllChildren();
73 guiNode.attachChild(helloText);
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAssets.java 72 guiNode.detachAllChildren();
78 guiNode.attachChild(helloText);
HelloPicking.java 157 guiNode.detachAllChildren();
165 guiNode.attachChild(ch);
HelloPhysics.java 218 guiNode.detachAllChildren();
226 guiNode.attachChild(ch);
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestColoredTexture.java 63 guiNode.attachChildAt(quad, 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
SimpleApplication.java 75 protected Node guiNode = new Node("Gui Node");
146 * Retrieves guiNode
147 * @return guiNode Node object
151 return guiNode;
183 guiNode.setQueueBucket(Bucket.Gui);
184 guiNode.setCullHint(CullHint.Never);
186 guiViewPort.attachScene(guiNode);
239 guiNode.updateLogicalState(tpf);
242 guiNode.updateGeometricState();
StatsAppState.java 57 protected Node guiNode;
66 public StatsAppState( Node guiNode, BitmapFont guiFont ) {
67 this.guiNode = guiNode;
121 if (guiNode == null)
122 guiNode = simpleApp.guiNode;
127 if (guiNode == null) {
128 throw new RuntimeException( "No guiNode specific and cannot be automatically determined." );
140 * Attaches FPS statistics to guiNode and displays it on the screen
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestMultiRenderTarget.java 115 guiNode.attachChild(display);
116 // guiNode.attachChild(display1);
117 // guiNode.attachChild(display2);
118 // guiNode.attachChild(display3);
119 // guiNode.attachChild(display4);
120 guiNode.updateGeometricState();
162 guiNode.updateGeometricState();

Completed in 659 milliseconds