dead code
This commit is contained in:
parent
a486a2ed83
commit
f17a87de2e
2 changed files with 1 additions and 17 deletions
|
@ -7,13 +7,7 @@ const texture_pressed = preload("res://Assets/skin_assets/button_normal.png")
|
|||
const 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.
|
||||
# Called every frame. '_delta' is the elapsed time since the previous frame.
|
||||
func _process(_delta):
|
||||
if etat:
|
||||
match villain.get_frame():
|
||||
|
|
|
@ -1,16 +1,6 @@
|
|||
extends Control
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
|
||||
|
||||
func _on_PlayButton_pressed():
|
||||
print("ici")
|
||||
get_tree().change_scene("res://Scenes/Node2D.tscn")
|
||||
|
|
Reference in a new issue