Files
aibis-dream/Assets/Scripts/Playable/SpriteLoop/SpriteLoopPlayableAsset.cs
T
2025-05-15 16:22:22 +08:00

16 lines
408 B
C#

using UnityEngine;
using UnityEngine.Playables;
namespace AibisDream
{
public class SpriteLoopPlayableAsset : PlayableAsset
{
public ExposedReference<GameObject> targetObject;
public Sprite[] sprites;
public override Playable CreatePlayable(PlayableGraph graph, GameObject owner)
{
throw new System.NotImplementedException();
}
}
}