Untitled
Anonymous
plain_text
10/05/2022 6:20 PM
652 B
23
Indexable
extends KinematicBody2D var speed = 200 var velocity = Vector2() func _physics_process(_delta): velocity = Vector2(0,0) if Input.is_key_pressed(KEY_D): velocity.x += 1 if Input.is_key_pressed(KEY_A): velocity.x -= 1 if Input.is_key_pressed(KEY_S): velocity.y += 1 if Input.is_key_pressed(KEY_W): velocity.y -= 1 velocity = velocity.normalized() * speed velocity = move_and_slide(velocity) func _ready(): pass # Replace with function body.
Editor is loading...