13 lines
319 B
C#
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);
|
|
}
|
|
} |