Update note visuals.

This commit is contained in:
2026-02-01 23:14:52 +08:00
parent 72f9b8eea5
commit 3a9d3046b2
4 changed files with 68 additions and 1 deletions

View File

@@ -1,4 +1,18 @@
class_name HoldNote extends NoteVisual
@export var start: Node2D
@export var end: Node2D
var start_id: int
var end_id: int
func reset() -> void:
start_id = -1
end_id = -1
func in_use() -> bool:
return start_id >= 0 or end_id >= 0
func update(beat: float) -> void:
pass