IEnumerator DoMarketing()
    {
        // Prepare Dangler
        GrapplingHook ghook = GameObject.Find("Dangle").GetComponent <GrapplingHook>();

        ghook.DisableVisuals();
        ghook.AimHook(1, Vector2.up);
        ghook.ThrowHook(1);
        ActivatePlayerGroup(GameObject.Find("StunPlayers"));

        ActivatePlayerGroup(GameObject.Find("StartingPlayers"));
        yield return(new WaitForSeconds(2.5f));

        yield return(StartCoroutine(AdvanceCamera()));

        ActivatePlayerGroup(GameObject.Find("GoldPlayers"));
        yield return(new WaitForSeconds(3f));

        yield return(StartCoroutine(AdvanceCamera()));


        ActivatePlayerGroup(GameObject.Find("SpikePlayers"));
        yield return(new WaitForSeconds(3.5f));


        ActivatePlayerGroup(GameObject.Find("ClimbingPlayer"));
        Climber climber = GameObject.Find("ClimbingPlayer/Player2D").GetComponent <Climber>();

        climber.StartClimb();
        yield return(StartCoroutine(AdvanceCamera()));

        yield return(new WaitForSeconds(3f));

        yield return(StartCoroutine(AdvanceCamera()));


        yield return(new WaitForSeconds(0.5f));

        ghook = GameObject.Find("StunPlayers/Player2D").GetComponent <GrapplingHook>();
        ghook.DisableVisuals();
        ghook.AimHook(1, new Vector2(1f, 0.25f));
        ghook.ThrowHook(1);
        yield return(new WaitForSeconds(2f));

        yield return(StartCoroutine(AdvanceCamera()));
    }
Ejemplo n.º 2
0
 // Use this for initialization
 void Start()
 {
     ghook = GetComponent <GrapplingHook>();
     ghook.DisableVisuals();
 }