oh-my-git/player.gd
Sebastian Morr f3c311be58 Indent using tabs, which is Godot's default behavior
This should make it easier for new people to contribute.
2020-08-24 16:49:39 +02:00

12 lines
314 B
GDScript

extends KinematicBody2D
export var speed = 800
func _ready():
pass
func _process(delta):
var right = Input.get_action_strength("right") - Input.get_action_strength("left")
var down = Input.get_action_strength("down") - Input.get_action_strength("up")
move_and_slide(Vector2(right, down).normalized()*speed)