This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using UnityEngine.UI; | |
| public class QuestionActivated : MonoBehaviour | |
| { | |
| public GameObject educationalCanvas; | |
| public Text lessonTextbox; | |
| public string lessonText; | |
| public GameObject correctButton; | |
| public GameObject incorrectButton; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class HorizontalMovementDisabler : MonoBehaviour | |
| { | |
| public GameObject columnObject; //Object the rotation script is attached to | |
| public string scriptName; //The name of the script | |
| private void OnTriggerEnter(Collider other) | |
| { | |
| if (other.tag == "Environment") |