123456789101112131415 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using System;
- public class SceneAnimationEvent : MonoBehaviour
- {
- public Action AnimStart;
- public Action AnimEnd;
- // Start is called before the first frame update
- void Start()
- {
- AssemblyHelper.Instance.BindScript("SceneAnimationEventLogic", this.gameObject);
- }
- }
|