ShowPrefab.cs 354 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class ShowPrefab : MonoBehaviour
  6. {
  7. public GameObject trueObject;
  8. public GameObject falseObject;
  9. public Text text;
  10. void Start()
  11. {
  12. }
  13. // Update is called once per frame
  14. void Update()
  15. {
  16. }
  17. }
粤ICP备19079148号