Esempio n. 1
0
 private void Start()
 {
     CanMoveCamera = false;
     InstructionBubble.ClearOldEvents();
     StartDialogue(intro, introInstructions, mainCanvas, sphere, false);
     InstructionBubble.onInstruction += () => CanMoveCamera = true;
     StartSphereParticles();
 }
Esempio n. 2
0
 public void ClickedSphere()
 {
     StopSphereParticle();
     InstructionBubble.ClearOldEvents();
     clickedOrb = true;
     //hallScript.canMoveAround = false;
     hallScript.MoveCameraBackButton.SetActive(false);
     StartDialogue(map, mapInstructions, mainCanvas, introTarget, true);
     InstructionBubble.onInstruction += () => AllowTownSelection();
     HighlightAllTowns();
 }