diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-06-16 15:01:35 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-06-16 15:18:24 -0500 |
commit | a222bdf83fde411b709b5e26a66b22dc96241667 (patch) | |
tree | 6943172bd0a58ea5ce155ca2f990f1687775ac14 /modules/gltf/register_types.cpp | |
parent | fa268be823b97095245f731ad59335a935e6b0ba (diff) | |
download | redot-engine-a222bdf83fde411b709b5e26a66b22dc96241667.tar.gz |
GLTF: Rename GLTFCollider class to GLTFPhysicsShape
Diffstat (limited to 'modules/gltf/register_types.cpp')
-rw-r--r-- | modules/gltf/register_types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gltf/register_types.cpp b/modules/gltf/register_types.cpp index 663ac7eaef..87149fa11d 100644 --- a/modules/gltf/register_types.cpp +++ b/modules/gltf/register_types.cpp @@ -117,7 +117,6 @@ void initialize_gltf_module(ModuleInitializationLevel p_level) { GDREGISTER_CLASS(GLTFAnimation); GDREGISTER_CLASS(GLTFBufferView); GDREGISTER_CLASS(GLTFCamera); - GDREGISTER_CLASS(GLTFCollider); GDREGISTER_CLASS(GLTFDocument); GDREGISTER_CLASS(GLTFDocumentExtension); GDREGISTER_CLASS(GLTFDocumentExtensionConvertImporterMesh); @@ -125,6 +124,7 @@ void initialize_gltf_module(ModuleInitializationLevel p_level) { GDREGISTER_CLASS(GLTFMesh); GDREGISTER_CLASS(GLTFNode); GDREGISTER_CLASS(GLTFPhysicsBody); + GDREGISTER_CLASS(GLTFPhysicsShape); GDREGISTER_CLASS(GLTFSkeleton); GDREGISTER_CLASS(GLTFSkin); GDREGISTER_CLASS(GLTFSpecGloss); |