fmt
This commit is contained in:
parent
72a58d4260
commit
ac461e1cf5
2 changed files with 2 additions and 7 deletions
|
@ -15,14 +15,10 @@ func close():
|
|||
if exit_condition():
|
||||
self.visible = false
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta):
|
||||
func _process(_delta):
|
||||
close()
|
||||
|
||||
|
||||
|
||||
|
||||
func _on_button_pressed():
|
||||
print("pressed")
|
||||
condition = true
|
||||
|
|
|
@ -6,12 +6,11 @@ func _ready():
|
|||
$Panel2/Button.disabled = true
|
||||
pass
|
||||
|
||||
|
||||
func exit_condition():
|
||||
return condition
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta):
|
||||
func _process(_delta):
|
||||
close()
|
||||
|
||||
func _on_button_pressed():
|
||||
|
|
Reference in a new issue