Normand Briere
2019-09-25 51e45bf615e1e2b4aca2edf9f7333b687c7d015e
ScriptNode.java
....@@ -1155,7 +1155,7 @@
11551155 boolean success = false;
11561156
11571157 if (cam instanceof Camera) // ?
1158
- success = Globals.theRenderer.SetCamera((Camera) cam);
1158
+ success = Globals.theRenderer.SetCamera((Camera) cam, true);
11591159
11601160 if (success)
11611161 {
....@@ -1558,7 +1558,7 @@
15581558 boolean success = false;
15591559
15601560 if (object instanceof Camera) // ?
1561
- success = Globals.theRenderer.SetCamera((Camera) object);
1561
+ success = Globals.theRenderer.SetCamera((Camera) object, true);
15621562
15631563 if (success && CameraPane.ABORTMODE)
15641564 {
....@@ -1821,9 +1821,9 @@
18211821 return e;
18221822 }
18231823
1824
- protected void deepCopySelf(Object3D other)
1824
+ protected void deepCopyNode(Object3D other)
18251825 {
1826
- super.deepCopySelf(other);
1826
+ super.deepCopyNode(other);
18271827 // FrameSelector bp = (FrameSelector)other;
18281828 // bp.frame = (int)(Math.random()*(getNumFrames() - mocap.offset));
18291829 }