Implement note visuals update method.

This commit is contained in:
2026-02-04 00:03:12 +08:00
parent 6ac9be6c79
commit fa0c53ac3e
4 changed files with 35 additions and 5 deletions

View File

@@ -20,3 +20,6 @@ func _notification(what: int) -> void:
_lane = get_parent() as Lane
NOTIFICATION_UNPARENTED:
_lane = null
static func _calculate_scroll(target_beat: float, current_beat: float) -> float:
return Settings.get_note_scroll_speed() * (current_beat - target_beat)