A bunch of stuff

This commit is contained in:
cblech
2025-01-05 02:16:26 +01:00
parent b4b3155378
commit d1d78adf00
32 changed files with 3581 additions and 286 deletions
@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.Playables;
public class MyButtonTrackClip : PlayableAsset
{
public override Playable CreatePlayable(PlayableGraph graph, GameObject owner)
{
var playable = ScriptPlayable<MyButtonTrackBehaviour>.Create(graph);
return playable;
}
}