.. | .. |
---|
1404 | 1404 | // supportCB.setToolTipText("Enable rigging"); |
---|
1405 | 1405 | // supportCB.addItemListener(this); |
---|
1406 | 1406 | |
---|
1407 | | - panel.add(freezeCB = new cCheckBox("Freeze", Globals.FREEZEONMOVE)); //, constraints); |
---|
| 1407 | + panel.add(freezeCB = new cCheckBox("Fast cam", Globals.FREEZEONMOVE)); //, constraints); |
---|
1408 | 1408 | freezeCB.setToolTipText("Fast moving camera"); |
---|
1409 | 1409 | freezeCB.addItemListener(this); |
---|
1410 | 1410 | |
---|
.. | .. |
---|
1413 | 1413 | |
---|
1414 | 1414 | panel.Return(); |
---|
1415 | 1415 | |
---|
| 1416 | + if (Globals.ADVANCED) |
---|
| 1417 | + { |
---|
1416 | 1418 | panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints); |
---|
1417 | 1419 | crowdCB.setToolTipText("Used for crowds"); |
---|
1418 | 1420 | crowdCB.addItemListener(this); |
---|
| 1421 | + } |
---|
1419 | 1422 | |
---|
1420 | 1423 | panel.add(smoothCB = new cCheckBox("Inertia", CameraPane.INERTIA)); //, constraints); |
---|
1421 | 1424 | smoothCB.setToolTipText("Snapping delay"); |
---|
.. | .. |
---|
1428 | 1431 | minshaderCB.setToolTipText("Minimal fast shader"); |
---|
1429 | 1432 | minshaderCB.addItemListener(this); |
---|
1430 | 1433 | |
---|
1431 | | -// constraints.gridy += 1; |
---|
1432 | 1434 | // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints); |
---|
1433 | 1435 | // speakerMocapCB.addItemListener(this); |
---|
1434 | 1436 | |
---|
1435 | | - panel.Return(); |
---|
1436 | | - |
---|
1437 | 1437 | if (false) |
---|
1438 | 1438 | { |
---|
1439 | 1439 | // handled in scripts |
---|
1440 | | - //constraints.gridy += 1; |
---|
1441 | 1440 | panel.add(speakerCameraCB = new cCheckBox("Cam", CameraPane.SPEAKERCAMERA)); //, constraints); |
---|
1442 | 1441 | speakerCameraCB.addItemListener(this); |
---|
1443 | 1442 | |
---|
1444 | | - //constraints.gridy += 1; |
---|
1445 | 1443 | panel.add(speakerFocusCB = new cCheckBox("Focus", CameraPane.SPEAKERFOCUS)); //, constraints); |
---|
1446 | 1444 | speakerFocusCB.addItemListener(this); |
---|
1447 | 1445 | |
---|
1448 | | - //constraints.gridy += 1; |
---|
1449 | | - panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints); |
---|
1450 | | - smoothfocusCB.addItemListener(this); |
---|
1451 | 1446 | panel.Return(); |
---|
1452 | 1447 | } |
---|
1453 | 1448 | |
---|
1454 | | -//constraints.gridx += 1; |
---|
| 1449 | + panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints); |
---|
| 1450 | + smoothfocusCB.addItemListener(this); |
---|
| 1451 | + |
---|
| 1452 | + panel.Return(); |
---|
| 1453 | + |
---|
1455 | 1454 | //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints); |
---|
1456 | 1455 | // debugCB.addItemListener(this); |
---|
1457 | 1456 | |
---|
.. | .. |
---|
2090 | 2089 | Object3D obj = (Object3D)group.selection.elementAt(0); |
---|
2091 | 2090 | objEditor.ScreenFit(obj, false); |
---|
2092 | 2091 | |
---|
2093 | | - cameraView.pingthread.StepToTarget(true); |
---|
| 2092 | + cameraView.pingthread.StepToTarget(); //true); |
---|
2094 | 2093 | refreshContents(); |
---|
2095 | 2094 | } |
---|
2096 | 2095 | |
---|
.. | .. |
---|
4874 | 4873 | LA.matTranslateInv(obj.fromParent, -i * scale, 0, 0); |
---|
4875 | 4874 | } |
---|
4876 | 4875 | |
---|
| 4876 | + Globals.lighttouched = true; |
---|
4877 | 4877 | refreshContents(); |
---|
4878 | 4878 | } |
---|
4879 | 4879 | |
---|