AdminEndShowObj.cs 339 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class AdminEndShowObj : MonoBehaviour
  5. {
  6. // Start is called before the first frame update
  7. public GameObject showGameObj;
  8. public void AnimEnd()
  9. {
  10. this.gameObject.SetActive(false);
  11. showGameObj.SetActive(true);
  12. }
  13. }