2025-05-02 22:34:42 +08:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Ichni;
|
|
|
|
|
using Ichni.RhythmGame;
|
|
|
|
|
using UnityEngine;
|
2025-05-11 00:20:27 +08:00
|
|
|
using UnityEngine.UI;
|
2025-05-02 22:34:42 +08:00
|
|
|
|
|
|
|
|
public class NotefabContoler : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public NoteBase noteBase;
|
2025-05-11 00:20:27 +08:00
|
|
|
public RawImage ifHold;
|
2025-05-02 22:34:42 +08:00
|
|
|
public void Onclick()
|
|
|
|
|
{
|
|
|
|
|
EditorManager.instance.uiManager.hierarchy.FindTab(noteBase);
|
|
|
|
|
}
|
|
|
|
|
}
|