mirror of
https://github.com/thecatontheceiling/buckshotroulette-decomp.git
synced 2024-11-25 15:07:21 +00:00
8 lines
168 B
GDScript
8 lines
168 B
GDScript
class_name Blockout extends Node
|
|
|
|
@export var objArray_club : Array[Node3D]
|
|
|
|
func HideClub():
|
|
for i in range(objArray_club.size()):
|
|
objArray_club[i].visible = false
|