super_space_game/scripts/player.gd

14 lines
395 B
GDScript3
Raw Normal View History

extends RigidBody2D
var health = 1000
func _process(delta: float) -> void:
var axis = Input.get_axis("turn_left", "turn_right")
angular_velocity = deg_to_rad(180 * axis)
var new_velocity = transform.y * Input.get_axis("forward", "backward") * 512
if new_velocity.length() > linear_velocity.length() - 12:
linear_velocity = transform.y * Input.get_axis("forward", "backward") * 512