SkillTimeLineController.cs 506 B

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Timeline;
  5. using UnityEngine.Playables;
  6. using UnityGameFramework.Runtime;
  7. public class SkillTimeLineController : MonoBehaviour
  8. {
  9. private PlayableDirector _timelineController;
  10. private void Awake()
  11. {
  12. }
  13. // Start is called before the first frame update
  14. void Start()
  15. {
  16. }
  17. // Update is called once per frame
  18. void Update()
  19. {
  20. }
  21. public void LookAtEmemy()
  22. {
  23. }
  24. }