diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2023-02-03 18:06:29 -0800 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2023-02-07 11:57:25 -0800 |
commit | dbc1e946959a47095a8c77cf0ddad58de9dba267 (patch) | |
tree | e6ae0d1753d49e236fc600c59184de1a5c3d9f15 /modules/gltf/gltf_document.h | |
parent | 929333fe267f488638c76564237faff9d5d572fc (diff) |
Fixes for gltf export.
* Fix null crashes.
* Bake tracks
* Add some error messages.
Diffstat (limited to 'modules/gltf/gltf_document.h')
-rw-r--r-- | modules/gltf/gltf_document.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/gltf/gltf_document.h b/modules/gltf/gltf_document.h index b8b989bf89..ae19f67390 100644 --- a/modules/gltf/gltf_document.h +++ b/modules/gltf/gltf_document.h @@ -364,8 +364,7 @@ public: Ref<GLTFNode> p_gltf_node); GLTFMeshIndex _convert_mesh_to_gltf(Ref<GLTFState> p_state, MeshInstance3D *p_mesh_instance); - void _convert_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player, - String p_animation_track_name); + void _convert_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player, String p_animation_track_name); Error _serialize(Ref<GLTFState> p_state, const String &p_path); Error _parse(Ref<GLTFState> p_state, String p_path, Ref<FileAccess> p_file); }; |