Searched defs:ModelInstance (Results 1 - 3 of 3) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
H A DModelInstance.java38 * The ModelInstance creates a full copy of all materials, nodes and animations.
40 public class ModelInstance implements RenderableProvider { class in inherits:RenderableProvider
41 /** Whether, by default, {@link NodeKeyframe}'s are shared amongst {@link Model} and ModelInstance. Can be overridden per
42 * ModelInstance using the constructor argument. */
59 /** Constructs a new ModelInstance with all nodes and materials of the given model.
61 public ModelInstance (final Model model) { method in class:ModelInstance
68 public ModelInstance (final Model model, final String nodeId, boolean mergeTransform) { method in class:ModelInstance
73 * @param transform The {@link Matrix4} instance for this ModelInstance to reference or null to create a new matrix.
76 public ModelInstance (final Model model, final Matrix4 transform, final String nodeId, boolean mergeTransform) { method in class:ModelInstance
85 public ModelInstance (fina method in class:ModelInstance
95 public ModelInstance (final Model model, final Matrix4 transform, final String nodeId, boolean parentTransform, method in class:ModelInstance
105 public ModelInstance (final Model model, final String nodeId, boolean recursive, boolean parentTransform, method in class:ModelInstance
116 public ModelInstance (final Model model, final Matrix4 transform, final String nodeId, boolean recursive, method in class:ModelInstance
127 public ModelInstance (final Model model, final Matrix4 transform, final String nodeId, boolean recursive, method in class:ModelInstance
145 public ModelInstance (final Model model, final String... rootNodeIds) { method in class:ModelInstance
150 public ModelInstance (final Model model, final Matrix4 transform, final String... rootNodeIds) { method in class:ModelInstance
162 public ModelInstance (final Model model, final Array<String> rootNodeIds) { method in class:ModelInstance
167 public ModelInstance (final Model model, final Matrix4 transform, final Array<String> rootNodeIds) { method in class:ModelInstance
172 public ModelInstance (final Model model, final Matrix4 transform, final Array<String> rootNodeIds, boolean shareKeyframes) { method in class:ModelInstance
181 public ModelInstance (final Model model, Vector3 position) { method in class:ModelInstance
187 public ModelInstance (final Model model, float x, float y, float z) { method in class:ModelInstance
193 public ModelInstance (final Model model, Matrix4 transform) { method in class:ModelInstance
198 public ModelInstance (ModelInstance copyFrom) { method in class:ModelInstance
203 public ModelInstance (ModelInstance copyFrom, final Matrix4 transform) { method in class:ModelInstance
208 public ModelInstance (ModelInstance copyFrom, final Matrix4 transform, boolean shareKeyframes) { method in class:ModelInstance
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
H A DParticleChannels.java5 import com.badlogic.gdx.graphics.g3d.ModelInstance;
111 public static final ChannelDescriptor ModelInstance = new ChannelDescriptor(newGlobalId(), ModelInstance.class, 1); field in class:ParticleChannels
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
H A DFlameMain.java70 import com.badlogic.gdx.graphics.g3d.ModelInstance;
167 ModelInstance( "Model Instance", new InfluencerWrapper[]{ enum constant in enum:FlameMain.ControllerType
242 type = ControllerType.ModelInstance;
634 private ModelInstance xyzInstance, xzPlaneInstance, xyPlaneInstance;
687 xyzInstance = new ModelInstance(xyzModel);
688 xzPlaneInstance = new ModelInstance(planeModel);
689 xyPlaneInstance = new ModelInstance(planeModel);

Completed in 158 milliseconds