godot-steering-ai-framework/godot/addons/com.gdquest.godot-steering-ai-framework/GSAIAgentLocation.gd

10 lines
287 B
GDScript3
Raw Normal View History

# Represents an agent with only a location and an orientation.
2020-04-03 02:31:59 +02:00
# @category - Base types
2023-01-13 16:59:15 +01:00
extends Reference
class_name GSAIAgentLocation
# The agent's position in space.
var position : Vector3 = Vector3.ZERO
# The agent's orientation on its Y axis rotation.
var orientation : float = 0.0