-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Labels
DocumentationIssues that affect the Wiki, Javadoc or any other form of documentationIssues that affect the Wiki, Javadoc or any other form of documentation
Milestone
Description
The javadoc says the default is MatrixJointModelTransform:
jmonkeyengine/jme3-core/src/main/java/com/jme3/anim/Armature.java
Lines 112 to 121 in a0c8247
| /** | |
| * Sets the JointModelTransform implementation | |
| * Default is {@link MatrixJointModelTransform} | |
| * | |
| * @param modelTransformClass which implementation to use | |
| * @see JointModelTransform | |
| * @see MatrixJointModelTransform | |
| * @see SeparateJointModelTransform | |
| */ | |
| public void setModelTransformClass(Class<? extends JointModelTransform> modelTransformClass) { |
The actual default is SeparateJointModelTransform:
| private Class<? extends JointModelTransform> modelTransformClass = SeparateJointModelTransform.class; |
Metadata
Metadata
Assignees
Labels
DocumentationIssues that affect the Wiki, Javadoc or any other form of documentationIssues that affect the Wiki, Javadoc or any other form of documentation