mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2025-01-26 14:29:19 +01:00
Rename 3D physics body classes to *3DAgent
This commit is contained in:
parent
7eb91a6165
commit
7e98b2e785
@ -75,9 +75,9 @@ _global_script_classes=[ {
|
||||
"path": "res://src/Agents/GSAIKinematicBody2DAgent.gd"
|
||||
}, {
|
||||
"base": "GSAISpecializedAgent",
|
||||
"class": "GSAIKinematicBodyAgent",
|
||||
"class": "GSAIKinematicBody3DAgent",
|
||||
"language": "GDScript",
|
||||
"path": "res://src/Agents/GSAIKinematicBodyAgent.gd"
|
||||
"path": "res://src/Agents/GSAIKinematicBody3DAgent.gd"
|
||||
}, {
|
||||
"base": "GSAIMatchOrientation",
|
||||
"class": "GSAILookWhereYouGo",
|
||||
@ -120,9 +120,9 @@ _global_script_classes=[ {
|
||||
"path": "res://src/Agents/GSAIRigidBody2DAgent.gd"
|
||||
}, {
|
||||
"base": "GSAISpecializedAgent",
|
||||
"class": "GSAIRigidBodyAgent",
|
||||
"class": "GSAIRigidBody3DAgent",
|
||||
"language": "GDScript",
|
||||
"path": "res://src/Agents/GSAIRigidBodyAgent.gd"
|
||||
"path": "res://src/Agents/GSAIRigidBody3DAgent.gd"
|
||||
}, {
|
||||
"base": "GSAISteeringBehavior",
|
||||
"class": "GSAISeek",
|
||||
@ -173,7 +173,7 @@ _global_script_class_icons={
|
||||
"GSAIGroupBehavior": "",
|
||||
"GSAIInfiniteProximity": "",
|
||||
"GSAIKinematicBody2DAgent": "",
|
||||
"GSAIKinematicBodyAgent": "",
|
||||
"GSAIKinematicBody3DAgent": "",
|
||||
"GSAILookWhereYouGo": "",
|
||||
"GSAIMatchOrientation": "",
|
||||
"GSAIPath": "",
|
||||
@ -182,7 +182,7 @@ _global_script_class_icons={
|
||||
"GSAIPursue": "",
|
||||
"GSAIRadiusProximity": "",
|
||||
"GSAIRigidBody2DAgent": "",
|
||||
"GSAIRigidBodyAgent": "",
|
||||
"GSAIRigidBody3DAgent": "",
|
||||
"GSAISeek": "",
|
||||
"GSAISeparation": "",
|
||||
"GSAISpecializedAgent": "",
|
||||
|
@ -1,7 +1,7 @@
|
||||
# A specialized steering agent that updates itself every frame so the user does
|
||||
# not have to using a KinematicBody
|
||||
extends GSAISpecializedAgent
|
||||
class_name GSAIKinematicBodyAgent
|
||||
class_name GSAIKinematicBody3DAgent
|
||||
|
||||
# SLIDE uses `move_and_slide`
|
||||
# COLLIDE uses `move_and_collide`
|
@ -1,7 +1,7 @@
|
||||
# A specialized steering agent that updates itself every frame so the user does
|
||||
# not have to using a RigidBody
|
||||
extends GSAISpecializedAgent
|
||||
class_name GSAIRigidBodyAgent
|
||||
class_name GSAIRigidBody3DAgent
|
||||
|
||||
|
||||
# The RigidBody to keep track of
|
Loading…
Reference in New Issue
Block a user