Normand Briere
2019-06-16 b33ef80d78f01a6a61f4248b1bb7deaade42d503
Mocap.java
....@@ -644,6 +644,24 @@
644644 // transient // aout 2013
645645 Object3D skeleton;
646646
647
+ void ExtractBigData(Object3D o)
648
+ {
649
+ super.ExtractBigData(o);
650
+
651
+ o.bvh = this.bvh;
652
+ o.skeleton = this.skeleton;
653
+ this.bvh = null;
654
+ this.skeleton = null;
655
+ }
656
+
657
+ void RestoreBigData(Object3D o)
658
+ {
659
+ super.RestoreBigData(o);
660
+
661
+ this.bvh = o.bvh;
662
+ this.skeleton = o.skeleton;
663
+ }
664
+
647665 boolean smoothed;
648666
649667 //boolean touched;