Normand Briere
2019-09-20 cbe4e90105d07d7d3fecabffaa01342403aa2ae3
GroupEditor.java
....@@ -1404,7 +1404,7 @@
14041404 // supportCB.setToolTipText("Enable rigging");
14051405 // supportCB.addItemListener(this);
14061406
1407
- panel.add(freezeCB = new cCheckBox("Freeze", Globals.FREEZEONMOVE)); //, constraints);
1407
+ panel.add(freezeCB = new cCheckBox("Fast cam", Globals.FREEZEONMOVE)); //, constraints);
14081408 freezeCB.setToolTipText("Fast moving camera");
14091409 freezeCB.addItemListener(this);
14101410
....@@ -1413,9 +1413,12 @@
14131413
14141414 panel.Return();
14151415
1416
+ if (Globals.ADVANCED)
1417
+ {
14161418 panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints);
14171419 crowdCB.setToolTipText("Used for crowds");
14181420 crowdCB.addItemListener(this);
1421
+ }
14191422
14201423 panel.add(smoothCB = new cCheckBox("Inertia", CameraPane.INERTIA)); //, constraints);
14211424 smoothCB.setToolTipText("Snapping delay");
....@@ -1428,30 +1431,26 @@
14281431 minshaderCB.setToolTipText("Minimal fast shader");
14291432 minshaderCB.addItemListener(this);
14301433
1431
-// constraints.gridy += 1;
14321434 // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints);
14331435 // speakerMocapCB.addItemListener(this);
14341436
1435
- panel.Return();
1436
-
14371437 if (false)
14381438 {
14391439 // handled in scripts
1440
- //constraints.gridy += 1;
14411440 panel.add(speakerCameraCB = new cCheckBox("Cam", CameraPane.SPEAKERCAMERA)); //, constraints);
14421441 speakerCameraCB.addItemListener(this);
14431442
1444
- //constraints.gridy += 1;
14451443 panel.add(speakerFocusCB = new cCheckBox("Focus", CameraPane.SPEAKERFOCUS)); //, constraints);
14461444 speakerFocusCB.addItemListener(this);
14471445
1448
- //constraints.gridy += 1;
1449
- panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints);
1450
- smoothfocusCB.addItemListener(this);
14511446 panel.Return();
14521447 }
14531448
1454
-//constraints.gridx += 1;
1449
+ panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints);
1450
+ smoothfocusCB.addItemListener(this);
1451
+
1452
+ panel.Return();
1453
+
14551454 //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints);
14561455 // debugCB.addItemListener(this);
14571456
....@@ -2090,7 +2089,7 @@
20902089 Object3D obj = (Object3D)group.selection.elementAt(0);
20912090 objEditor.ScreenFit(obj, false);
20922091
2093
- cameraView.pingthread.StepToTarget(true);
2092
+ cameraView.pingthread.StepToTarget(); //true);
20942093 refreshContents();
20952094 }
20962095
....@@ -4874,6 +4873,7 @@
48744873 LA.matTranslateInv(obj.fromParent, -i * scale, 0, 0);
48754874 }
48764875
4876
+ Globals.lighttouched = true;
48774877 refreshContents();
48784878 }
48794879