123456789101112131415161718192021 |
- using UnityEngine;
- using System.Collections;
- using System.Collections.Generic;
- public class FlashLight : MonoBehaviour
- {
- #region 变量
- #endregion
- private void Awake()
- {
-
- }
- public void EndAnim()
- {
- transform.SetActive(false);
- }
- }
|