OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:batchNode
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java
78
protected
BatchNode
batchNode
= null;
80
* the start index of this geom's mesh in the
batchNode
mesh
232
throw new UnsupportedOperationException("Cannot set the material of a batched geometry, change the material of the parent
BatchNode
.");
297
batchNode
.updateSubBatch(this);
298
prevBatchTransforms.set(
batchNode
.getTransforms(this));
306
* Batch this geometry, should only be called by the
BatchNode
.
307
* @param node the
batchNode
310
protected void batch(
BatchNode
node, int startIndex) {
311
this.
batchNode
= node
[
all
...]
/external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java
61
protected
BatchNode
batchNode
;
74
batchNode
= new SimpleBatchNode("
BatchNode
");
109
batchNode
.batch();
114
terrain.attachChild(
batchNode
);
119
batchNode
.setLocalTranslation(pos);
146
batchNode
.attachChild(box);
163
// public
BatchNode
randomBatch() {
336
box =
batchNode
.getChild("Box" + random)
[
all
...]
TestBatchNodeTower.java
54
import com.jme3.scene.
BatchNode
;
91
BatchNode
batchNode
= new
BatchNode
("batch Node");
125
batchNode
.batch();
126
batchNode
.setShadowMode(ShadowMode.CastAndReceive);
127
rootNode.attachChild(
batchNode
);
236
this.
batchNode
.attachChild(reBoxg);
Completed in 114 milliseconds