using AX.MessageSystem; using UnityEngine; using System.Collections; using UnityEngine.UI; public class SelfStudyModeSet : MonoBehaviour { /// /// 自学模式 /// private bool Flag = true; private Animator Ani; private Button MyButton; private Toggle TheClear;// 一键清空 private Toggle TheHideName;// 隐藏名称 private Toggle TheTool;// 辅助工具 private Toggle TheExit;// 退出 private Text TheShowText; private GameObject Template;//辅助工具的父物体 public static SelfStudyModeSet instance; private CeJuScript CeJu; void Awake() { if (instance == null) { instance = this; } } void Start() { Ani = this.gameObject.GetComponent(); MyButton = this.gameObject.GetComponent