From f6324bf5839097575748302a12c552ed0e571f31 Mon Sep 17 00:00:00 2001 From: Jannik Rosendahl <jannik.rosendahl@stud.hs-hannover.de> Date: Fri, 17 Dec 2021 19:01:23 +0100 Subject: [PATCH] Update src/actors/player/Player.gd --- src/actors/player/Player.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actors/player/Player.gd b/src/actors/player/Player.gd index 92eb628..5cc32d3 100644 --- a/src/actors/player/Player.gd +++ b/src/actors/player/Player.gd @@ -286,7 +286,7 @@ func update_animation(): $AnimatedSprite.offset.x = 0 $MeleeDetector/CollisionShape2D.position.x = abs($MeleeDetector/CollisionShape2D.position.x) - $InfoLabel.text = "is_moving: " + str(is_moving) + "\nis_jumping: " + str(is_jumping) + "\nis_attacking: " + str(is_attacking) + "\nvh: " + str(velocity.x) + "\nvv" + str(velocity.y) + "\nhp: " + str(hitpoints) + $InfoLabel.text = "" # "is_moving: " + str(is_moving) + "\nis_jumping: " + str(is_jumping) + "\nis_attacking: " + str(is_attacking) + "\nvh: " + str(velocity.x) + "\nvv" + str(velocity.y) + "\nhp: " + str(hitpoints) func set_black_white(boolean: bool): if boolean: -- GitLab