Skip to content

Instantly share code, notes, and snippets.

View giftheck's full-sized avatar

Gareth Thomas giftheck

  • 01:10 (UTC)
View GitHub Profile
using UnityEngine;
using UnityEngine.UI;
public class QuestionActivated : MonoBehaviour
{
public GameObject educationalCanvas;
public Text lessonTextbox;
public string lessonText;
public GameObject correctButton;
public GameObject incorrectButton;
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")