Searched defs:targetMeshIndex (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DPose.java47 private int targetMeshIndex; field in class:Pose
55 public Pose(String name, int targetMeshIndex, Vector3f[] offsets, int[] indices){ argument
57 this.targetMeshIndex = targetMeshIndex;
63 return targetMeshIndex;
114 out.write(targetMeshIndex, "meshIndex", -1);
122 targetMeshIndex = in.readInt("meshIndex", -1);
H A DPoseTrack.java49 private int targetMeshIndex; field in class:PoseTrack
97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){ argument
98 this.targetMeshIndex = targetMeshIndex;
122 Mesh target = targets[targetMeshIndex];
174 out.write(targetMeshIndex, "meshIndex", 0);
182 targetMeshIndex = in.readInt("meshIndex", 0);

Completed in 134 milliseconds