Beispiel #1
0
    void Start()
    {
        opMgr = new CameraOpMgr(this, terrainMesh);

        // Be sure to grab the current rotations as starting points.
        transform.LookAt(opMgr.pivotInfo.pivotPos);
    }
Beispiel #2
0
 public RotRun(StateID id, CameraOpMgr owner_)
     : base(id)
 {
     owner = owner_;
 }
Beispiel #3
0
 public RotPrepare(StateID id, CameraOpMgr owner_)
     : base(id)
 {
     owner = owner_;
 }
Beispiel #4
0
 public ZoomIdle(StateID id, CameraOpMgr owner_)
     : base(id)
 {
     owner = owner_;
 }
Beispiel #5
0
 public PivotConfirm(StateID id, CameraOpMgr owner_)
     : base(id)
 {
     owner = owner_;
 }
Beispiel #6
0
 public PivotSelect(StateID id, CameraOpMgr owner_)
     : base(id)
 {
     owner = owner_;
 }