godot-steering-ai-framework/project/demos/seek_and_flee/Player.gd
Nathan Lovato 8fb4f4c51a Replace multiline comments with comment blocks
The use of multiline blocks in GDSCript for comments leaves them in the
final compiled file, increasing size and potentially processing for no
end-user gain.
2020-01-12 10:21:43 -05:00

33 lines
811 B
GDScript

extends KinematicBody2D
# Class to control the player in basic left/right up/down movement.
onready var collision_shape: = $CollisionShape2D
onready var agent: = GSTAgentLocation.new()
export var speed: = 150.0
var _radius: = 0.0
func _ready() -> void:
_radius = collision_shape.shape.radius
func _draw() -> void:
draw_circle(Vector2.ZERO, _radius, Color.red)
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"))
func _physics_process(delta: float) -> void:
var movement: = _get_movement()
if movement.length_squared() < 0.01:
return
move_and_slide(movement * speed)
agent.position = Vector3(global_position.x, global_position.y, 0)