using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; namespace Level24 { public class Level24Manager : MonoBehaviour { public Level09.Level09Manager level09Manager; // Start is called before the first frame update void Start() { } public void SetBtnImg(GameObject img) { bool active = img.gameObject.activeSelf; img.gameObject.SetActive(!active); } public void SetBtnValue(int index) { level09Manager.AddAnSwer(index); } } }