mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
7eb91a6165
GSAI for Godot Steering AI
26 lines
668 B
GDScript
26 lines
668 B
GDScript
extends KinematicBody2D
|
|
# Class to control the player in basic left/right up/down movement.
|
|
|
|
|
|
var speed: float
|
|
onready var agent := GSAIAgentLocation.new()
|
|
|
|
|
|
func _ready() -> void:
|
|
agent.position = GSAIUtils.to_vector3(global_position)
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
var movement := _get_movement()
|
|
if movement.length_squared() < 0.01:
|
|
return
|
|
|
|
move_and_slide(movement * speed)
|
|
agent.position = GSAIUtils.to_vector3(global_position)
|
|
|
|
|
|
func _get_movement() -> Vector2:
|
|
return Vector2(
|
|
Input.get_action_strength("sf_right") - Input.get_action_strength("sf_left"),
|
|
Input.get_action_strength("sf_down") - Input.get_action_strength("sf_up"))
|