- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class AdminEndShowObj : MonoBehaviour
- {
- // Start is called before the first frame update
- public GameObject showGameObj;
- public void AnimEnd()
- {
- this.gameObject.SetActive(false);
- showGameObj.SetActive(true);
- }
- }
|