Esempio n. 1
0
    void Start()
    {
        opMgr = new CameraOpMgr(this, terrainMesh);

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