NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Timeline/InstantiateClip.cs

13 lines
319 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Playables;
using UnityEngine.Timeline;
public class InstantiateClip : PlayableAsset
{
public override Playable CreatePlayable(PlayableGraph graph, GameObject owner)
{
return Playable.Create(graph);
}
}