2023-04-07 14:11:07 +00:00
|
|
|
extends CharacterBody2D
|
|
|
|
|
2023-04-07 17:26:18 +00:00
|
|
|
@export var speed = 20
|
2023-04-07 17:52:50 +00:00
|
|
|
@export_range(0, 1) var damping_factor = 0.6
|
2023-04-07 17:26:18 +00:00
|
|
|
@export var animation_player : AnimationPlayer
|
2023-04-07 14:11:07 +00:00
|
|
|
|
2023-04-07 17:26:18 +00:00
|
|
|
func _physics_process(delta : float):
|
2023-04-07 17:52:50 +00:00
|
|
|
update_player_movement(delta)
|
2023-04-07 17:26:18 +00:00
|
|
|
pass
|
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
func get_move_input_vector() -> Vector2:
|
2023-04-07 14:11:07 +00:00
|
|
|
var input_direction = Input.get_vector("move_left", "move_right", "move_up", "move_down").normalized()
|
|
|
|
return input_direction
|
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
func update_player_movement(delta : float):
|
|
|
|
var input = get_move_input_vector()
|
2023-04-07 17:26:18 +00:00
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
# Damp Movement if not moving, Accelerate if Moving
|
|
|
|
var is_moving = input != Vector2.ZERO
|
|
|
|
self.velocity = input * speed * delta * 60 if is_moving else self.velocity * (1 - min(1, damping_factor * 60 * delta))
|
2023-04-07 17:26:18 +00:00
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
update_player_animation()
|
2023-04-07 17:26:18 +00:00
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
# Update Objects Physics calculations
|
2023-04-07 14:11:07 +00:00
|
|
|
self.move_and_slide()
|
|
|
|
pass
|
|
|
|
|
2023-04-07 17:52:50 +00:00
|
|
|
func update_player_animation():
|
|
|
|
var move_vector = get_move_input_vector()
|
2023-04-07 17:26:18 +00:00
|
|
|
match move_vector:
|
|
|
|
Vector2.ZERO: animation_player.play("Idle")
|
|
|
|
Vector2.LEFT: animation_player.play("MoveLeft")
|
|
|
|
Vector2.RIGHT: animation_player.play("MoveRight")
|
|
|
|
Vector2.UP: animation_player.play("MoveUp")
|
|
|
|
Vector2.DOWN: animation_player.play("MoveDown")
|
|
|
|
_: animation_player.play("Idle")
|
2023-04-07 17:52:50 +00:00
|
|
|
pass
|