mirror of
https://github.com/thecatontheceiling/buckshotroulette-decomp.git
synced 2025-07-05 19:45:09 +01:00
11 lines
227 B
GDScript
11 lines
227 B
GDScript
class_name Statue extends Node
|
|
|
|
@export var rm : RoundManager
|
|
@export var statue : Node3D
|
|
@export var cup : Node3D
|
|
|
|
func CheckStatus():
|
|
if (rm.playerData.playername == " vellon"):
|
|
cup.visible = false
|
|
statue.visible = true
|