This commit is contained in:
2025-05-05 14:57:20 +08:00
parent febb5d273d
commit 14220c5b52
42 changed files with 5891 additions and 13 deletions
@@ -0,0 +1,18 @@
using UnityEngine;
using UnityEngine.Playables;
namespace AibisDream
{
public class SpriteLoopAsset : PlayableAsset
{
public override Playable CreatePlayable(PlayableGraph graph, GameObject owner)
{
var playable = ScriptPlayable<SpriteLoopBehaviour>.Create(graph);
var behaviour = playable.GetBehaviour();
// behaviour.targetRenderer =
return playable;
}
}
}