|
@@ -35,13 +35,14 @@ import com.jme3.export.InputCapsule;
|
|
import com.jme3.export.JmeExporter;
|
|
import com.jme3.export.JmeExporter;
|
|
import com.jme3.export.JmeImporter;
|
|
import com.jme3.export.JmeImporter;
|
|
import com.jme3.export.OutputCapsule;
|
|
import com.jme3.export.OutputCapsule;
|
|
|
|
+import com.jme3.export.Savable;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.util.BitSet;
|
|
import java.util.BitSet;
|
|
|
|
|
|
/**
|
|
/**
|
|
* An AnimationMask to select joints from a single Armature.
|
|
* An AnimationMask to select joints from a single Armature.
|
|
*/
|
|
*/
|
|
-public class ArmatureMask implements AnimationMask {
|
|
|
|
|
|
+public class ArmatureMask implements AnimationMask, Savable {
|
|
|
|
|
|
private BitSet affectedJoints = new BitSet();
|
|
private BitSet affectedJoints = new BitSet();
|
|
|
|
|