2026-07-09 구준표루스 타임라인

This commit is contained in:
2026-07-09 19:37:41 +09:00
parent 9747fa114f
commit 9a592d47c6
15 changed files with 2009 additions and 53 deletions

View File

@@ -0,0 +1,19 @@
using UnityEditor.Playables;
using UnityEngine;
using UnityEngine.Playables;
public class TimelineSupport : MonoBehaviour
{
private PlayableDirector _director;
private void Awake()
{
_director = GetComponent<PlayableDirector>();
}
public void PlayRequest(float delay)
{
_ = Util.RunDelayed(delay,()=>_director.Play());
}
}