Normand Briere
2019-04-22 3c4c16e0a4ca3949a7a37a24607df7f89abfe7ea
ScriptNode.java
....@@ -538,13 +538,13 @@
538538 }
539539 if (command.equals("stoplive") || command.equals("liveoff"))
540540 {
541
- if (CameraPane.isLIVE())
541
+ if (Globals.isLIVE())
542542 CameraPane.theRenderer.ToggleLive();
543543 return;
544544 }
545545 if (command.equals("startlive") || command.equals("liveon"))
546546 {
547
- if (!CameraPane.isLIVE())
547
+ if (!Globals.isLIVE())
548548 CameraPane.theRenderer.ToggleLive();
549549 return;
550550 }
....@@ -1785,7 +1785,7 @@
17851785 return live;
17861786 }
17871787
1788
- void DrawNode(CameraPane display, Object3D /*Composite*/ root, boolean selected)
1788
+ void DrawNode(iCameraPane display, Object3D /*Composite*/ root, boolean selected)
17891789 {
17901790 if (CameraPane.ABORTED)
17911791 {
....@@ -1793,7 +1793,7 @@
17931793 return;
17941794 }
17951795
1796
- if (isLive() && display.isLIVE() && display.drawMode == display.SHADOW)
1796
+ if (isLive() && Globals.isLIVE() && display.DrawMode() == display.SHADOW)
17971797 {
17981798 if (reader == null)
17991799 Init();