diff --git a/Assets/Code/LevelThreeHandler.cs b/Assets/Code/LevelThreeHandler.cs index 5131ad3..b306f8f 100644 --- a/Assets/Code/LevelThreeHandler.cs +++ b/Assets/Code/LevelThreeHandler.cs @@ -1,27 +1,27 @@ -using UnityEngine; -using System.Collections; - -public class LevelThreeHandler : MonoBehaviour { - - public GameObject rigidElevator; - public GameObject curvedElevator; - - // Use this for initialization - void Start () { - - } - - // Update is called once per frame - void Update () - { - if(rigidElevator.GetComponent().GetTriggered() && curvedElevator.GetComponent().GetTriggered()) - { - LoadNextLevel(); - } - } - - void LoadNextLevel() +using UnityEngine; +using System.Collections; + +public class LevelThreeHandler : MonoBehaviour { + + public GameObject rigidElevator; + public GameObject curvedElevator; + + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { - Application.LoadLevel( "FinalLevel" ); - } -} + if(rigidElevator.GetComponent().GetTriggered() && curvedElevator.GetComponent().GetTriggered()) + { + LoadNextLevel(); + } + } + + void LoadNextLevel() + { + Application.LoadLevel( "FinalLevel" ); + } +} diff --git a/Assets/UnityVS/Editor/UnityVS.VersionSpecific.dll b/Assets/UnityVS/Editor/UnityVS.VersionSpecific.dll index 629b171..51f1ef0 100644 Binary files a/Assets/UnityVS/Editor/UnityVS.VersionSpecific.dll and b/Assets/UnityVS/Editor/UnityVS.VersionSpecific.dll differ