Smoke on the water. Closes #38
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
extends Node
|
||||
|
||||
|
||||
func _process(delta: float):
|
||||
if(escoria.globals_manager.get_global("turno_cocina_economica_encendida") == true):
|
||||
self.visible = true
|
||||
else:
|
||||
self.visible = false
|
||||
@@ -0,0 +1,8 @@
|
||||
extends Node
|
||||
|
||||
|
||||
func _process(delta: float):
|
||||
if escoria.globals_manager.get_global("turno_cocina_economica_encendida") and not escoria.globals_manager.get_global("turno_cocina_economica_con_olla"):
|
||||
self.visible = true
|
||||
else:
|
||||
self.visible = false
|
||||
Reference in New Issue
Block a user