This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Boups/Scenes/Button_Node2D.gd
2023-02-25 16:30:53 +01:00

32 lines
876 B
GDScript
Executable file

extends Button
onready var villain = $"../Villain/AnimatedSprite"
var etat
var texture_pressed = preload("res://Assets/skin_assets/button_normal.png")
var texture_released = preload("res://Assets/skin_assets/button_pressed.png")
# Called when the node enters the scene tree for the first time.
func _ready():
etat = false
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta):
match villain.get_frame():
2:
print("non") if etat else print("caché")
_:
print("oui") if etat else print("caché")
func _on_Button_pressed():
etat = !etat
var new_stylebox_normal = self.get_stylebox("normal").duplicate()
if etat:
new_stylebox_normal.texture = texture_pressed
else:
new_stylebox_normal.texture = texture_released
self.add_stylebox_override("normal", new_stylebox_normal)