10 lines
128 B
GDScript3
10 lines
128 B
GDScript3
|
|
class_name TapNote extends NoteVisual
|
||
|
|
|
||
|
|
var id: int = -1
|
||
|
|
|
||
|
|
func reset() -> void:
|
||
|
|
id = -1
|
||
|
|
|
||
|
|
func in_use() -> bool:
|
||
|
|
return id >= 0
|