92 lines
1.8 KiB
GDScript
92 lines
1.8 KiB
GDScript
extends CharacterBody2D
|
|
|
|
@export_range(10, 1000, 10, "or_greater")
|
|
var speed = 300.0
|
|
@export_range(0, 0.2, 0.001, "or_greater")
|
|
var acceleration = 0.5
|
|
|
|
@export_group("Airborne")
|
|
@export_range(0, 1000, 10, "or_greater")
|
|
var jump_velocity = 400.0
|
|
@export_range(0, 10, 0.1, "or_greater")
|
|
var gravity_modifier = 1
|
|
|
|
@onready var knight: AnimatedSprite2D = $Knight
|
|
@onready var red_hood: AnimatedSprite2D = $RedHood
|
|
|
|
var animated_sprites = []
|
|
|
|
var is_in_cutscene = false
|
|
var current_animation = "idle"
|
|
|
|
func play_anim():
|
|
for sprite in animated_sprites:
|
|
sprite.play(current_animation)
|
|
|
|
func play_anim_run():
|
|
current_animation = "run"
|
|
|
|
func play_anim_idle():
|
|
current_animation = "idle"
|
|
|
|
func play_anim_jump():
|
|
current_animation = "jump"
|
|
|
|
func set_in_cutscene():
|
|
is_in_cutscene = true
|
|
|
|
func set_in_play():
|
|
is_in_cutscene = false
|
|
|
|
func look_left():
|
|
for sprite in animated_sprites:
|
|
sprite.flip_h = true
|
|
|
|
func look_right():
|
|
for sprite in animated_sprites:
|
|
sprite.flip_h = false
|
|
|
|
func _ready() -> void:
|
|
animated_sprites = [
|
|
knight,
|
|
red_hood
|
|
]
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
play_anim()
|
|
if is_in_cutscene:
|
|
move_and_slide()
|
|
return
|
|
|
|
|
|
if not is_on_floor():
|
|
velocity += get_gravity() * delta * gravity_modifier
|
|
|
|
# Handle jump.
|
|
# if Input.is_action_just_pressed("ui_accept") and is_on_floor():
|
|
# velocity.y = -jump_velocity
|
|
|
|
var direction := Input.get_axis("move_left", "move_right")
|
|
if direction > 0:
|
|
look_right()
|
|
if direction < 0:
|
|
look_left()
|
|
|
|
if velocity.x != 0:
|
|
play_anim_run()
|
|
else:
|
|
play_anim_idle()
|
|
|
|
if direction:
|
|
var smoothed_speed = speed * smoothstep(0, 1, acceleration)
|
|
velocity.x += direction * smoothed_speed
|
|
velocity.x = clampf(velocity.x, -speed, speed)
|
|
else:
|
|
velocity.x = move_toward(velocity.x, 0, speed)
|
|
|
|
move_and_slide()
|
|
|
|
|
|
func _on_dialogue_manager_dialogue_ended() -> void:
|
|
set_in_play()
|