SceneAnimationEvent.cs 377 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using System;
  5. public class SceneAnimationEvent : MonoBehaviour
  6. {
  7. public Action AnimStart;
  8. public Action AnimEnd;
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. AssemblyHelper.Instance.BindScript("SceneAnimationEventLogic", this.gameObject);
  13. }
  14. }