Damage animation and abbreviation

This commit is contained in:
2024-06-26 09:11:51 -04:00
parent 3a1b69a987
commit 6465469d31
8 changed files with 719 additions and 812 deletions

14
Scenes/Score.gd Normal file
View File

@@ -0,0 +1,14 @@
extends Label
var from_score = 0
var to_score = 100
# Called when the node enters the scene tree for the first time.
func _ready():
#self.value = 100
#var tween = get_tree().create_tween()
#tween.tween_property(self, "value", to_score, 1.0).set_trans(Tween.TRANS_LINEAR)
pass
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass