Add nodes for creating note arrays in-editor.

This commit is contained in:
2026-02-04 00:07:13 +08:00
parent dbf6a710a3
commit 501ff6a7dc
4 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class_name EditorNoteArray extends NoteArray
func _ready() -> void:
for note: EditorNote in get_children():
if note == null:
return
# TODO: Make this insert sorted.
_beats.append(note.hit_beat)
_types.append(note.type)
_lanes.append(note.lane)