| .. | .. | 
|---|
| 328 | 328 |          objEditor.ctrlPanel.remove(setupPanel2); | 
|---|
| 329 | 329 |          objEditor.ctrlPanel.remove(objectCommandsPanel); | 
|---|
| 330 | 330 |          objEditor.ctrlPanel.remove(pushPanel); | 
|---|
 | 331 | +        objEditor.ctrlPanel.remove(transformCountPanel);  | 
|---|
| 331 | 332 |          if (versionPanel != null) | 
|---|
| 332 | 333 |              objEditor.ctrlPanel.remove(versionPanel); | 
|---|
| 333 |  | -        if (countPanel != null)  | 
|---|
| 334 |  | -            objEditor.ctrlPanel.remove(countPanel);  | 
|---|
 | 334 | +        if (loopCountPanel != null)  | 
|---|
 | 335 | +            objEditor.ctrlPanel.remove(loopCountPanel);  | 
|---|
| 335 | 336 |          //objEditor.ctrlPanel.remove(fillPanel); | 
|---|
| 336 | 337 |           | 
|---|
| 337 | 338 |          //Remove(normalpushField); | 
|---|
| .. | .. | 
|---|
| 1213 | 1214 |      cGridBag setupPanel2; | 
|---|
| 1214 | 1215 |      cGridBag objectCommandsPanel; | 
|---|
| 1215 | 1216 |      cGridBag pushPanel; | 
|---|
 | 1217 | +    cGridBag transformCountPanel;  | 
|---|
| 1216 | 1218 |      cGridBag versionPanel; | 
|---|
| 1217 |  | -    cGridBag countPanel;  | 
|---|
 | 1219 | +    cGridBag loopCountPanel;  | 
|---|
| 1218 | 1220 |      cGridBag fillPanel; | 
|---|
| 1219 | 1221 |   | 
|---|
| 1220 |  | -    cNumberSlider countField;  | 
|---|
 | 1222 | +    cNumberSlider loopCountField;  | 
|---|
| 1221 | 1223 |       | 
|---|
| 1222 | 1224 |      JCheckBox AddCheckBox(cGridBag panel, String label, boolean on) | 
|---|
| 1223 | 1225 |      { | 
|---|
| .. | .. | 
|---|
| 1471 | 1473 |          oe.ctrlPanel.add(objectCommandsPanel); | 
|---|
| 1472 | 1474 |          oe.ctrlPanel.Return(); | 
|---|
| 1473 | 1475 |   | 
|---|
 | 1476 | +        if (copy.maxcount == 0)  | 
|---|
 | 1477 | +            copy.maxcount = 128;  | 
|---|
 | 1478 | +          | 
|---|
 | 1479 | +        transformCountPanel = AddSlider(oe.ctrlPanel, "Transform", 0, 128, copy.transformcount * 128 / copy.maxcount);  | 
|---|
 | 1480 | +        transformCountField = (cNumberSlider)transformCountPanel.getComponent(1);  | 
|---|
 | 1481 | +          | 
|---|
 | 1482 | +        oe.ctrlPanel.Return();  | 
|---|
| 1474 | 1483 |      pushPanel = AddSlider(oe.ctrlPanel, "Push", -1, 1, copy.NORMALPUSH * 100, 1.1); // To have the buttons | 
|---|
| 1475 | 1484 |      normalpushField = (cNumberSlider)pushPanel.getComponent(1); | 
|---|
| 1476 | 1485 |      if (copy instanceof Composite && !(copy instanceof cGroup)) | 
|---|
| 1477 | 1486 |      { | 
|---|
| 1478 | 1487 |          oe.ctrlPanel.Return(); | 
|---|
| 1479 |  | -        countPanel = AddSlider(oe.ctrlPanel, "Count", 0, 50, copy.count);  | 
|---|
| 1480 |  | -        countField = (cNumberSlider)countPanel.getComponent(1);  | 
|---|
 | 1488 | +        loopCountPanel = AddSlider(oe.ctrlPanel, "Loop", 0, 50, copy.count);  | 
|---|
 | 1489 | +        loopCountField = (cNumberSlider)loopCountPanel.getComponent(1);  | 
|---|
| 1481 | 1490 |      } | 
|---|
| 1482 | 1491 |      if (false && copy.versionlist != null && copy.versionindex != -1) | 
|---|
| 1483 | 1492 |      { | 
|---|
| .. | .. | 
|---|
| 4426 | 4435 |                  cameraPanel.add(cameraView); | 
|---|
| 4427 | 4436 |                  centralPanel.add(cameraPanel); | 
|---|
| 4428 | 4437 |                  frame.setJMenuBar(timelineMenubar); | 
|---|
| 4429 |  | -                wasFullScreen = CameraPane.FULLSCREEN;  | 
|---|
| 4430 |  | -                if (!CameraPane.FULLSCREEN)  | 
|---|
| 4431 |  | -                    ToggleFullScreen();  | 
|---|
| 4432 |  | -                toggleFullScreenItem.setEnabled(false);  | 
|---|
 | 4438 | +                //wasFullScreen = CameraPane.FULLSCREEN;  | 
|---|
 | 4439 | +                //if (!CameraPane.FULLSCREEN)  | 
|---|
 | 4440 | +                //    ToggleFullScreen();  | 
|---|
 | 4441 | +                //toggleFullScreenItem.setEnabled(false);  | 
|---|
| 4433 | 4442 |              } | 
|---|
| 4434 | 4443 |              else | 
|---|
| 4435 | 4444 |              { | 
|---|
| 4436 | 4445 |                  centralPanel.remove(cameraPanel); | 
|---|
| 4437 | 4446 |                  centralPanel.add(cameraView); | 
|---|
| 4438 | 4447 |                  frame.setJMenuBar(null); | 
|---|
| 4439 |  | -                if (!wasFullScreen)  | 
|---|
| 4440 |  | -                    ToggleFullScreen();  | 
|---|
| 4441 |  | -                toggleFullScreenItem.setEnabled(true);  | 
|---|
 | 4448 | +                //if (!wasFullScreen)  | 
|---|
 | 4449 | +                //    ToggleFullScreen();  | 
|---|
 | 4450 | +                //toggleFullScreenItem.setEnabled(true);  | 
|---|
| 4442 | 4451 |              } | 
|---|
| 4443 | 4452 |   | 
|---|
| 4444 | 4453 |              frame.validate(); | 
|---|
| .. | .. | 
|---|
| 5584 | 5593 |          //copy.Touch(); | 
|---|
| 5585 | 5594 |      } | 
|---|
| 5586 | 5595 |   | 
|---|
 | 5596 | +    cNumberSlider transformCountField;  | 
|---|
 | 5597 | +      | 
|---|
| 5587 | 5598 |      cNumberSlider versionSlider; // Main | 
|---|
| 5588 | 5599 |      cNumberSlider versionField; // selection (off) | 
|---|
| 5589 | 5600 |       | 
|---|
| .. | .. | 
|---|
| 5632 | 5643 |              return; | 
|---|
| 5633 | 5644 |          } | 
|---|
| 5634 | 5645 |           | 
|---|
| 5635 |  | -        if (e.getSource() == countField)  | 
|---|
 | 5646 | +        if (e.getSource() == loopCountField)  | 
|---|
| 5636 | 5647 |          { | 
|---|
| 5637 |  | -            copy.count = countField.getInteger();  | 
|---|
 | 5648 | +            copy.count = loopCountField.getInteger();  | 
|---|
 | 5649 | +            Globals.lighttouched = true;  | 
|---|
 | 5650 | +            objEditor.refreshContents();  | 
|---|
 | 5651 | +            return;  | 
|---|
 | 5652 | +        }  | 
|---|
 | 5653 | +          | 
|---|
 | 5654 | +        if (e.getSource() == transformCountField)  | 
|---|
 | 5655 | +        {  | 
|---|
 | 5656 | +            copy.transformcount = transformCountField.getInteger() * copy.maxcount / 256;  | 
|---|
| 5638 | 5657 |              Globals.lighttouched = true; | 
|---|
| 5639 | 5658 |              objEditor.refreshContents(); | 
|---|
| 5640 | 5659 |              return; | 
|---|