Oh yessss Movable Track Sampler

This commit is contained in:
2025-05-02 22:34:42 +08:00
parent 99f839dc47
commit 39c1b4e16a
12 changed files with 8646 additions and 202 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using Ichni;
using Ichni.RhythmGame;
using UnityEngine;
public class NotefabContoler : MonoBehaviour
{
public NoteBase noteBase;
public void Onclick()
{
EditorManager.instance.uiManager.hierarchy.FindTab(noteBase);
}
}