Godot Version
4.3 stable
Question
I don’t know if this is a noob question but I want my sprite to change depending on which way it is going but it just seems to jump to the last animation played, is there a way to stammer it to match up with the tween?
if Input.is_action_just_pressed("right") && _1_1_active == true && can_move_right == true:
_1_1_active = false
var move_tween = get_tree().create_tween()
var move_tween2 = get_tree().create_tween()
animated_sprite_2d.play("Right")
move_tween.tween_property(self, "position", position + Vector2(24, 0), 0.6)
animated_sprite_2d.stop()
animated_sprite_2d.play("Up")
move_tween.chain().tween_property(self, "position", position + Vector2(24,-64), 1.2)
animated_sprite_2d.stop()
animated_sprite_2d.play("Right")
move_tween.chain().tween_property(self, "position", position + Vector2(32,-64), 0.2)
animated_sprite_2d.stop()
animated_sprite_2d.play("Up")
move_tween.chain().tween_property(self, "position", position + Vector2(32,-96), 0.7)
animated_sprite_2d.stop()
animated_sprite_2d.play("Left")
move_tween.chain().tween_property(self, "position", position + Vector2(-8,-96), 0.6)
animated_sprite_2d.stop()
animated_sprite_2d.play("Down")