4 using System.Collections.Generic;
7 public delegate
void CutsceneStartedHandler (Vector3 focus);
8 public delegate
void CutsceneFinishedHandler ();
16 public event CutsceneStartedHandler CutsceneStarted;
17 public event CutsceneFinishedHandler CutsceneFinished;
21 get {
return _instance; }
24 public bool IsInCutscene
26 get {
return _isInCutscene; }
31 Timeline<GameMessage> _cutsceneMsgs;
32 GameObject _prevCamTarget;
34 const float MAX_CUTSCENE_DIST = 20.0f;
46 _cutsceneMsgs.EntryPassed += OnCutsceneStateChanged;
49 public void StartCutscene (Vector3 focus)
56 startMsg.Write(focus);
58 _cutsceneMsgs[0] = startMsg;
61 if (CutsceneStarted != null)
62 CutsceneStarted(focus);
65 public void StopCutscene ()
71 stopMsg.Write(
false);;
73 _cutsceneMsgs[0] = stopMsg;
74 _isInCutscene =
false;
76 if (CutsceneFinished != null)
80 void OnCutsceneStateChanged (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
82 var msg = entry.Value;
83 bool start = msg.ReadBoolean();
87 var focus = msg.ReadVector3();
88 transform.position = focus;
90 if (Vector2.Distance((Vector2)
Cameraman.Instance.transform.position, (Vector2)transform.position) > MAX_CUTSCENE_DIST)
101 if (CutsceneStarted != null)
102 CutsceneStarted(focus);
109 if (_prevCamTarget != null)
113 _isInCutscene =
false;
115 if (CutsceneFinished != null)
124 if (_instance ==
this)
A class to start cutscenes by taking control of the camera and returning it to the player when the cu...
void SnapToTarget()
Bring the camera to the desired position immediately without smooth following.
GameObject Target
Gets or sets the target for this cameraman to follow.
void StopFollowing()
Stop following the target.
void Follow(GameObject go)
Make this cameraman follow the given object.
A class for serializing game data into a stream for propagation between objects and peers...
Standard cameraman for the game.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...