Files
godot-4-key-rhythm-game/rhythm_game/lane/lane.gd

10 lines
129 B
GDScript

class_name Lane extends Node2D
func get_hit_pos() -> Vector2:
return position
func update(_beat: BeatUpdate) -> void:
pass