.. | .. |
---|
261 | 261 | |
---|
262 | 262 | // LA.matConcat(toParent, hip.get(0).toParent, toParent); |
---|
263 | 263 | |
---|
| 264 | + CameraPane.CreateSelectedPoint(); |
---|
| 265 | + |
---|
264 | 266 | CameraPane.debugpointG.toParent[3][0] = poship.x; |
---|
265 | 267 | CameraPane.debugpointG.toParent[3][1] = poship.y; |
---|
266 | 268 | CameraPane.debugpointG.toParent[3][2] = poship.z; |
---|
.. | .. |
---|
501 | 503 | centroid.z = matrix[3][2]; |
---|
502 | 504 | // this.getCentroid(centroid, true); |
---|
503 | 505 | |
---|
| 506 | + CameraPane.CreateSelectedPoint(); |
---|
504 | 507 | CameraPane.debugpointG.name = ""; |
---|
505 | 508 | CameraPane.debugpointG.toParent[3][0] = mocaporigin.x; |
---|
506 | 509 | CameraPane.debugpointG.toParent[3][1] = mocaporigin.y; |
---|
.. | .. |
---|
643 | 646 | |
---|
644 | 647 | // transient // aout 2013 |
---|
645 | 648 | Object3D skeleton; |
---|
| 649 | + |
---|
| 650 | + void ExtractBigData(Object3D o) |
---|
| 651 | + { |
---|
| 652 | + super.ExtractBigData(o); |
---|
| 653 | + |
---|
| 654 | + o.savebvh = this.bvh; |
---|
| 655 | + o.saveskeleton = this.skeleton; |
---|
| 656 | + this.bvh = null; |
---|
| 657 | + this.skeleton = null; |
---|
| 658 | + } |
---|
| 659 | + |
---|
| 660 | + void RestoreBigData(Object3D o) |
---|
| 661 | + { |
---|
| 662 | + super.RestoreBigData(o); |
---|
| 663 | + |
---|
| 664 | + this.bvh = o.savebvh; |
---|
| 665 | + this.skeleton = o.saveskeleton; |
---|
| 666 | + } |
---|
646 | 667 | |
---|
647 | 668 | boolean smoothed; |
---|
648 | 669 | |
---|
.. | .. |
---|
3897 | 3918 | // return; |
---|
3898 | 3919 | |
---|
3899 | 3920 | if (//!restarted && /*display.restartframe &&*/ |
---|
3900 | | - Globals.isLIVE() && live && (display.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW)) |
---|
| 3921 | + Globals.isLIVE() && live && (display.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW || !Globals.COMPUTESHADOWWHENLIVE)) |
---|
3901 | 3922 | { |
---|
3902 | 3923 | //display.restartframe = false; |
---|
3903 | 3924 | restarted = true; |
---|