mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2025-02-03 22:45:55 +01:00
11 lines
288 B
GDScript
11 lines
288 B
GDScript
extends Reference
|
|
class_name GSAIAgentLocation
|
|
|
|
# Represents an agent with only a location and an orientation.
|
|
# @category - Base types
|
|
|
|
# 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
|