mirror of
https://github.com/Steffo99/looping-for-loops.git
synced 2024-11-22 16:14:22 +00:00
61 lines
1.6 KiB
GDScript
61 lines
1.6 KiB
GDScript
extends ExtendedKinematicBody2D
|
|
class_name Player
|
|
|
|
export(Vector2) var gravity: Vector2 = Vector2(0, 10)
|
|
var speed: Vector2 = Vector2.ZERO
|
|
|
|
export(float) var move_speed: float = 300
|
|
export(float) var jump_speed: float = 500
|
|
export(float) var jump_buffer_msec: float = 64
|
|
export(float) var quick_fall_gravity_multiplier: float = 4
|
|
|
|
var can_jump: bool = false
|
|
var jump_buffer: int = 0
|
|
|
|
var is_quick_falling: bool = false
|
|
var quick_fall_buffer: int = 0
|
|
|
|
|
|
func _physics_process(delta):
|
|
var up_normal = -gravity.normalized()
|
|
var floor_normal = get_floor_normal()
|
|
|
|
if is_on_floor():
|
|
var gravity_speed = speed * up_normal
|
|
speed -= gravity_speed * floor_normal
|
|
can_jump = true
|
|
is_quick_falling = false
|
|
|
|
if is_quick_falling:
|
|
speed += gravity * quick_fall_gravity_multiplier
|
|
else:
|
|
speed += gravity
|
|
|
|
var current_time = OS.get_ticks_msec()
|
|
|
|
if Input.is_action_just_pressed("plr_up"):
|
|
jump_buffer = current_time
|
|
|
|
if Input.is_action_just_released("plr_up"):
|
|
quick_fall_buffer = OS.get_ticks_msec()
|
|
|
|
if can_jump and current_time - jump_buffer <= jump_buffer_msec:
|
|
speed += up_normal * jump_speed
|
|
can_jump = false
|
|
|
|
if quick_fall_buffer > jump_buffer:
|
|
is_quick_falling = true
|
|
|
|
var movement = speed
|
|
|
|
if is_on_floor():
|
|
var current_floor = get_floor()
|
|
if current_floor.has_method("get_conveyor_speed"):
|
|
movement += floor_normal.rotated(- PI / 2) * current_floor.get_conveyor_speed(position)
|
|
|
|
if Input.is_action_pressed("plr_left"):
|
|
movement += Vector2.LEFT * move_speed
|
|
if Input.is_action_pressed("plr_right"):
|
|
movement += Vector2.RIGHT * move_speed
|
|
|
|
move_and_slide(movement, up_normal)
|