2023-09-16 00:40:36 -07:00
|
|
|
using Godot;
|
|
|
|
|
using WacK.Data.Chart;
|
|
|
|
|
|
|
|
|
|
namespace WacK.Things.TunnelObjects
|
|
|
|
|
{
|
|
|
|
|
public partial class THNoteHold : THNotePlay
|
|
|
|
|
{
|
|
|
|
|
public new NoteHold noteData;
|
|
|
|
|
|
|
|
|
|
public void Init(NoteHold noteData)
|
|
|
|
|
{
|
|
|
|
|
base.Init(noteData);
|
|
|
|
|
this.noteData = noteData;
|
2023-09-16 18:54:35 -07:00
|
|
|
|
|
|
|
|
// TODO: setup other Nodes to render hold note properly
|
2023-09-16 00:40:36 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|