Przeglądaj źródła

Add directed animations

DricomDragon 5 lat temu
rodzic
commit
8f17bb09c8
1 zmienionych plików z 8 dodań i 0 usunięć
  1. 8 0
      Player.gd

+ 8 - 0
Player.gd

@@ -27,3 +27,11 @@ func _process(delta):
 	
 	position.x = clamp(position.x, 0, screen_size.x)
 	position.y = clamp(position.y, 0, screen_size.y)
+	
+	if velocity.x != 0:
+		$AnimatedSprite.animation = "right"
+		$AnimatedSprite.flip_v = false
+		$AnimatedSprite.flip_h = velocity.x < 0
+	elif velocity.y != 0:
+		$AnimatedSprite.animation = "up"
+		$AnimatedSprite.flip_v = velocity.y > 0