17 lines
354 B
C#
17 lines
354 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Ichni;
|
|
using Ichni.RhythmGame;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class NotefabContoler : MonoBehaviour
|
|
{
|
|
public NoteBase noteBase;
|
|
public RawImage ifHold;
|
|
public void Onclick()
|
|
{
|
|
EditorManager.instance.uiManager.hierarchy.FindTab(noteBase);
|
|
}
|
|
}
|