mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
68b85bb234
gdformat follows the official style guide, and handles line length and wrapping lines for us.
8 lines
228 B
GDScript
8 lines
228 B
GDScript
# Represents an agent with only a location and an orientation.
|
|
class_name GSAIAgentLocation
|
|
|
|
# The agent's position in space.
|
|
var position := Vector3.ZERO
|
|
# The agent's orientation on its Y axis rotation.
|
|
var orientation := 0.0
|