示例#1
0
 /// <summary>
 /// Used by a cutscene graphic to unregister itself from the manager.
 /// </summary>
 /// <param name="cutsceneGraphic">CG object</param>
 public void UnregisterCG(CutsceneGraphic cutsceneGraphic)
 {
     if (this.cutsceneGraphic == cutsceneGraphic)
     {
         this.cutsceneGraphic = null;
     }
 }
示例#2
0
 /// <summary>
 /// Function used by cutscene graphic objects to register themselves to the manager.
 /// </summary>
 /// <param name="cutsceneGraphic">CG object</param>
 public void Register(CutsceneGraphic cutsceneGraphic)
 {
     this.cutsceneGraphic = cutsceneGraphic;
 }
示例#3
0
 /// <summary>
 /// Constructor
 /// </summary>
 public DialogueManager_v2()
 {
     this.dialogueBox     = null;
     this.hintBox         = null;
     this.cutsceneGraphic = null;
 }