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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
ModelInstance.java 38 * The ModelInstance creates a full copy of all materials, nodes and animations.
40 public class ModelInstance implements 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) {
68 public ModelInstance (final Model model, final String nodeId, boolean mergeTransform) {
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) {
85 public ModelInstance (final Model model, final String nodeId, boolean parentTransform, boolean mergeTransform) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
ParticleChannels.java 5 import com.badlogic.gdx.graphics.g3d.ModelInstance;
111 public static final ChannelDescriptor ModelInstance = new ChannelDescriptor(newGlobalId(), ModelInstance.class, 1);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
FlameMain.java 70 import com.badlogic.gdx.graphics.g3d.ModelInstance;
167 ModelInstance( "Model Instance", new InfluencerWrapper[]{
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);
    [all...]

Completed in 487 milliseconds