diff --git a/rhythm_game/lane/lane.gd b/rhythm_game/lane/lane.gd index 3d6d31c..0044d63 100644 --- a/rhythm_game/lane/lane.gd +++ b/rhythm_game/lane/lane.gd @@ -6,4 +6,5 @@ func get_hit_pos() -> Vector2: ## Should be connected to [signal NoteSpawner.notes_spawned]. func update(beat: float) -> void: - pass + for note: NoteVisual in get_children(): + note.update(beat)