Files

11 lines
239 B
GDScript3
Raw Permalink Normal View History

class_name Lane extends Node2D
func get_hit_pos() -> Vector2:
return position
2026-02-01 23:17:51 +08:00
## Should be connected to [signal NoteSpawner.notes_spawned].
func update(beat: float) -> void:
2026-02-04 00:04:55 +08:00
for note: NoteVisual in get_children():
note.update(beat)