oneliner
This commit is contained in:
parent
b7a8dfaa76
commit
b3ebeb7306
1 changed files with 2 additions and 8 deletions
|
@ -17,15 +17,9 @@ func _ready():
|
||||||
func _process(_delta):
|
func _process(_delta):
|
||||||
match villain.get_frame():
|
match villain.get_frame():
|
||||||
2:
|
2:
|
||||||
if etat:
|
print("non") if etat else print("caché")
|
||||||
print("non")
|
|
||||||
else:
|
|
||||||
print("caché")
|
|
||||||
_:
|
_:
|
||||||
if etat:
|
print("oui") if etat else print("caché")
|
||||||
print("oui")
|
|
||||||
else:
|
|
||||||
print("caché")
|
|
||||||
|
|
||||||
|
|
||||||
func _on_Button_pressed():
|
func _on_Button_pressed():
|
||||||
|
|
Reference in a new issue