SelectBJImage.cs 248 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class SelectBJImage : MonoBehaviour
  5. {
  6. public GameObject SelectBj;
  7. public void SelectObj(bool state)
  8. {
  9. SelectBj.SetActive(state);
  10. }
  11. }