10 lines
129 B
GDScript3
10 lines
129 B
GDScript3
|
|
class_name Lane extends Node2D
|
||
|
|
|
||
|
|
|
||
|
|
func get_hit_pos() -> Vector2:
|
||
|
|
return position
|
||
|
|
|
||
|
|
|
||
|
|
func update(_beat: BeatUpdate) -> void:
|
||
|
|
pass
|