using System.Collections; using System.Collections.Generic; using UnityEngine; public class SelectBJImage : MonoBehaviour { public GameObject SelectBj; public void SelectObj(bool state) { SelectBj.SetActive(state); } }