extends CharacterBody2D
#Line 5:Static function "get_vecter()" not found in base "GDScriptNativeClass".
func _physics_process_Delta():
var direction = Input.get_vecter("move_left", "move_right", "move_up", "move_down")
velocity = direction * 600
move_and_slide()
if velocity.length() > 0.0:
$HappyBoo.play_walk_animation()
else:
$HappyBoo.play_idle_animation()
it saids Line 5:Static function "get_vecter()" not found in base "GDScriptNativeClass".