gltf_document.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /**************************************************************************/
  2. /* gltf_document.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef GLTF_DOCUMENT_H
  31. #define GLTF_DOCUMENT_H
  32. #include "extensions/gltf_document_extension.h"
  33. #include "modules/modules_enabled.gen.h" // For csg, gridmap.
  34. class GLTFDocument : public Resource {
  35. GDCLASS(GLTFDocument, Resource);
  36. static Vector<Ref<GLTFDocumentExtension>> all_document_extensions;
  37. Vector<Ref<GLTFDocumentExtension>> document_extensions;
  38. private:
  39. const float BAKE_FPS = 30.0f;
  40. public:
  41. const int32_t JOINT_GROUP_SIZE = 4;
  42. enum {
  43. ARRAY_BUFFER = 34962,
  44. ELEMENT_ARRAY_BUFFER = 34963,
  45. TYPE_BYTE = 5120,
  46. TYPE_UNSIGNED_BYTE = 5121,
  47. TYPE_SHORT = 5122,
  48. TYPE_UNSIGNED_SHORT = 5123,
  49. TYPE_UNSIGNED_INT = 5125,
  50. TYPE_FLOAT = 5126,
  51. COMPONENT_TYPE_BYTE = 5120,
  52. COMPONENT_TYPE_UNSIGNED_BYTE = 5121,
  53. COMPONENT_TYPE_SHORT = 5122,
  54. COMPONENT_TYPE_UNSIGNED_SHORT = 5123,
  55. COMPONENT_TYPE_INT = 5125,
  56. COMPONENT_TYPE_FLOAT = 5126,
  57. };
  58. enum {
  59. TEXTURE_TYPE_GENERIC = 0,
  60. TEXTURE_TYPE_NORMAL = 1,
  61. };
  62. protected:
  63. static void _bind_methods();
  64. public:
  65. static void register_gltf_document_extension(Ref<GLTFDocumentExtension> p_extension, bool p_first_priority = false);
  66. static void unregister_gltf_document_extension(Ref<GLTFDocumentExtension> p_extension);
  67. static void unregister_all_gltf_document_extensions();
  68. private:
  69. void _build_parent_hierachy(Ref<GLTFState> p_state);
  70. double _filter_number(double p_float);
  71. String _get_component_type_name(const uint32_t p_component);
  72. int _get_component_type_size(const int p_component_type);
  73. Error _parse_scenes(Ref<GLTFState> p_state);
  74. Error _parse_nodes(Ref<GLTFState> p_state);
  75. String _get_type_name(const GLTFType p_component);
  76. String _get_accessor_type_name(const GLTFType p_type);
  77. String _gen_unique_name(Ref<GLTFState> p_state, const String &p_name);
  78. String _sanitize_animation_name(const String &p_name);
  79. String _gen_unique_animation_name(Ref<GLTFState> p_state, const String &p_name);
  80. String _sanitize_bone_name(const String &p_name);
  81. String _gen_unique_bone_name(Ref<GLTFState> p_state,
  82. const GLTFSkeletonIndex p_skel_i,
  83. const String &p_name);
  84. GLTFTextureIndex _set_texture(Ref<GLTFState> p_state, Ref<Texture2D> p_texture,
  85. StandardMaterial3D::TextureFilter p_filter_mode, bool p_repeats);
  86. Ref<Texture2D> _get_texture(Ref<GLTFState> p_state,
  87. const GLTFTextureIndex p_texture, int p_texture_type);
  88. GLTFTextureSamplerIndex _set_sampler_for_mode(Ref<GLTFState> p_state,
  89. StandardMaterial3D::TextureFilter p_filter_mode, bool p_repeats);
  90. Ref<GLTFTextureSampler> _get_sampler_for_texture(Ref<GLTFState> p_state,
  91. const GLTFTextureIndex p_texture);
  92. Error _parse_json(const String &p_path, Ref<GLTFState> p_state);
  93. Error _parse_glb(Ref<FileAccess> p_file, Ref<GLTFState> p_state);
  94. void _compute_node_heights(Ref<GLTFState> p_state);
  95. Error _parse_buffers(Ref<GLTFState> p_state, const String &p_base_path);
  96. Error _parse_buffer_views(Ref<GLTFState> p_state);
  97. GLTFType _get_type_from_str(const String &p_string);
  98. Error _parse_accessors(Ref<GLTFState> p_state);
  99. Error _decode_buffer_view(Ref<GLTFState> p_state, double *p_dst,
  100. const GLTFBufferViewIndex p_buffer_view,
  101. const int p_skip_every, const int p_skip_bytes,
  102. const int p_element_size, const int p_count,
  103. const GLTFType p_type, const int p_component_count,
  104. const int p_component_type, const int p_component_size,
  105. const bool p_normalized, const int p_byte_offset,
  106. const bool p_for_vertex);
  107. Vector<double> _decode_accessor(Ref<GLTFState> p_state,
  108. const GLTFAccessorIndex p_accessor,
  109. const bool p_for_vertex);
  110. Vector<float> _decode_accessor_as_floats(Ref<GLTFState> p_state,
  111. const GLTFAccessorIndex p_accessor,
  112. const bool p_for_vertex);
  113. Vector<int> _decode_accessor_as_ints(Ref<GLTFState> p_state,
  114. const GLTFAccessorIndex p_accessor,
  115. const bool p_for_vertex);
  116. Vector<Vector2> _decode_accessor_as_vec2(Ref<GLTFState> p_state,
  117. const GLTFAccessorIndex p_accessor,
  118. const bool p_for_vertex);
  119. Vector<Vector3> _decode_accessor_as_vec3(Ref<GLTFState> p_state,
  120. const GLTFAccessorIndex p_accessor,
  121. const bool p_for_vertex);
  122. Vector<Color> _decode_accessor_as_color(Ref<GLTFState> p_state,
  123. const GLTFAccessorIndex p_accessor,
  124. const bool p_for_vertex);
  125. Vector<Quaternion> _decode_accessor_as_quaternion(Ref<GLTFState> p_state,
  126. const GLTFAccessorIndex p_accessor,
  127. const bool p_for_vertex);
  128. Vector<Transform2D> _decode_accessor_as_xform2d(Ref<GLTFState> p_state,
  129. const GLTFAccessorIndex p_accessor,
  130. const bool p_for_vertex);
  131. Vector<Basis> _decode_accessor_as_basis(Ref<GLTFState> p_state,
  132. const GLTFAccessorIndex p_accessor,
  133. const bool p_for_vertex);
  134. Vector<Transform3D> _decode_accessor_as_xform(Ref<GLTFState> p_state,
  135. const GLTFAccessorIndex p_accessor,
  136. const bool p_for_vertex);
  137. Error _parse_meshes(Ref<GLTFState> p_state);
  138. Error _serialize_textures(Ref<GLTFState> p_state);
  139. Error _serialize_texture_samplers(Ref<GLTFState> p_state);
  140. Error _serialize_images(Ref<GLTFState> p_state, const String &p_path);
  141. Error _serialize_lights(Ref<GLTFState> p_state);
  142. Ref<Image> _parse_image_bytes_into_image(Ref<GLTFState> p_state, const Vector<uint8_t> &p_bytes, const String &p_mime_type, int p_index);
  143. void _parse_image_save_image(Ref<GLTFState> p_state, const String &p_mime_type, int p_index, Ref<Image> p_image);
  144. Error _parse_images(Ref<GLTFState> p_state, const String &p_base_path);
  145. Error _parse_textures(Ref<GLTFState> p_state);
  146. Error _parse_texture_samplers(Ref<GLTFState> p_state);
  147. Error _parse_materials(Ref<GLTFState> p_state);
  148. void _set_texture_transform_uv1(const Dictionary &d, Ref<BaseMaterial3D> p_material);
  149. void spec_gloss_to_rough_metal(Ref<GLTFSpecGloss> r_spec_gloss,
  150. Ref<BaseMaterial3D> p_material);
  151. static void spec_gloss_to_metal_base_color(const Color &p_specular_factor,
  152. const Color &p_diffuse,
  153. Color &r_base_color,
  154. float &r_metallic);
  155. GLTFNodeIndex _find_highest_node(Ref<GLTFState> p_state,
  156. const Vector<GLTFNodeIndex> &p_subset);
  157. void _recurse_children(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index,
  158. RBSet<GLTFNodeIndex> &p_all_skin_nodes, HashSet<GLTFNodeIndex> &p_child_visited_set);
  159. bool _capture_nodes_in_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin,
  160. const GLTFNodeIndex p_node_index);
  161. void _capture_nodes_for_multirooted_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin);
  162. Error _expand_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin);
  163. Error _verify_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin);
  164. Error _parse_skins(Ref<GLTFState> p_state);
  165. Error _determine_skeletons(Ref<GLTFState> p_state);
  166. Error _reparent_non_joint_skeleton_subtrees(
  167. Ref<GLTFState> p_state, Ref<GLTFSkeleton> p_skeleton,
  168. const Vector<GLTFNodeIndex> &p_non_joints);
  169. Error _determine_skeleton_roots(Ref<GLTFState> p_state,
  170. const GLTFSkeletonIndex p_skel_i);
  171. Error _create_skeletons(Ref<GLTFState> p_state);
  172. Error _map_skin_joints_indices_to_skeleton_bone_indices(Ref<GLTFState> p_state);
  173. Error _serialize_skins(Ref<GLTFState> p_state);
  174. Error _create_skins(Ref<GLTFState> p_state);
  175. bool _skins_are_same(const Ref<Skin> p_skin_a, const Ref<Skin> p_skin_b);
  176. void _remove_duplicate_skins(Ref<GLTFState> p_state);
  177. Error _serialize_cameras(Ref<GLTFState> p_state);
  178. Error _parse_cameras(Ref<GLTFState> p_state);
  179. Error _parse_lights(Ref<GLTFState> p_state);
  180. Error _parse_animations(Ref<GLTFState> p_state);
  181. Error _serialize_animations(Ref<GLTFState> p_state);
  182. BoneAttachment3D *_generate_bone_attachment(Ref<GLTFState> p_state,
  183. Skeleton3D *p_skeleton,
  184. const GLTFNodeIndex p_node_index,
  185. const GLTFNodeIndex p_bone_index);
  186. ImporterMeshInstance3D *_generate_mesh_instance(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index);
  187. Camera3D *_generate_camera(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index);
  188. Light3D *_generate_light(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index);
  189. Node3D *_generate_spatial(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index);
  190. void _assign_scene_names(Ref<GLTFState> p_state);
  191. template <class T>
  192. T _interpolate_track(const Vector<real_t> &p_times, const Vector<T> &p_values,
  193. const float p_time,
  194. const GLTFAnimation::Interpolation p_interp);
  195. GLTFAccessorIndex _encode_accessor_as_quaternions(Ref<GLTFState> p_state,
  196. const Vector<Quaternion> p_attribs,
  197. const bool p_for_vertex);
  198. GLTFAccessorIndex _encode_accessor_as_weights(Ref<GLTFState> p_state,
  199. const Vector<Color> p_attribs,
  200. const bool p_for_vertex);
  201. GLTFAccessorIndex _encode_accessor_as_joints(Ref<GLTFState> p_state,
  202. const Vector<Color> p_attribs,
  203. const bool p_for_vertex);
  204. GLTFAccessorIndex _encode_accessor_as_floats(Ref<GLTFState> p_state,
  205. const Vector<real_t> p_attribs,
  206. const bool p_for_vertex);
  207. GLTFAccessorIndex _encode_accessor_as_vec2(Ref<GLTFState> p_state,
  208. const Vector<Vector2> p_attribs,
  209. const bool p_for_vertex);
  210. void _calc_accessor_vec2_min_max(int p_i, const int p_element_count, Vector<double> &p_type_max, Vector2 p_attribs, Vector<double> &p_type_min) {
  211. if (p_i == 0) {
  212. for (int32_t type_i = 0; type_i < p_element_count; type_i++) {
  213. p_type_max.write[type_i] = p_attribs[(p_i * p_element_count) + type_i];
  214. p_type_min.write[type_i] = p_attribs[(p_i * p_element_count) + type_i];
  215. }
  216. }
  217. for (int32_t type_i = 0; type_i < p_element_count; type_i++) {
  218. p_type_max.write[type_i] = MAX(p_attribs[(p_i * p_element_count) + type_i], p_type_max[type_i]);
  219. p_type_min.write[type_i] = MIN(p_attribs[(p_i * p_element_count) + type_i], p_type_min[type_i]);
  220. p_type_max.write[type_i] = _filter_number(p_type_max.write[type_i]);
  221. p_type_min.write[type_i] = _filter_number(p_type_min.write[type_i]);
  222. }
  223. }
  224. GLTFAccessorIndex _encode_accessor_as_vec3(Ref<GLTFState> p_state,
  225. const Vector<Vector3> p_attribs,
  226. const bool p_for_vertex);
  227. GLTFAccessorIndex _encode_accessor_as_color(Ref<GLTFState> p_state,
  228. const Vector<Color> p_attribs,
  229. const bool p_for_vertex);
  230. void _calc_accessor_min_max(int p_i, const int p_element_count, Vector<double> &p_type_max, Vector<double> p_attribs, Vector<double> &p_type_min);
  231. GLTFAccessorIndex _encode_accessor_as_ints(Ref<GLTFState> p_state,
  232. const Vector<int32_t> p_attribs,
  233. const bool p_for_vertex);
  234. GLTFAccessorIndex _encode_accessor_as_xform(Ref<GLTFState> p_state,
  235. const Vector<Transform3D> p_attribs,
  236. const bool p_for_vertex);
  237. Error _encode_buffer_view(Ref<GLTFState> p_state, const double *p_src,
  238. const int p_count, const GLTFType p_type,
  239. const int p_component_type, const bool p_normalized,
  240. const int p_byte_offset, const bool p_for_vertex,
  241. GLTFBufferViewIndex &r_accessor);
  242. Error _encode_accessors(Ref<GLTFState> p_state);
  243. Error _encode_buffer_views(Ref<GLTFState> p_state);
  244. Error _serialize_materials(Ref<GLTFState> p_state);
  245. Error _serialize_meshes(Ref<GLTFState> p_state);
  246. Error _serialize_nodes(Ref<GLTFState> p_state);
  247. Error _serialize_scenes(Ref<GLTFState> p_state);
  248. String interpolation_to_string(const GLTFAnimation::Interpolation p_interp);
  249. GLTFAnimation::Track _convert_animation_track(Ref<GLTFState> p_state,
  250. GLTFAnimation::Track p_track,
  251. Ref<Animation> p_animation,
  252. int32_t p_track_i,
  253. GLTFNodeIndex p_node_i);
  254. Error _encode_buffer_bins(Ref<GLTFState> p_state, const String &p_path);
  255. Error _encode_buffer_glb(Ref<GLTFState> p_state, const String &p_path);
  256. PackedByteArray _serialize_glb_buffer(Ref<GLTFState> p_state, Error *r_err);
  257. Dictionary _serialize_texture_transform_uv1(Ref<BaseMaterial3D> p_material);
  258. Dictionary _serialize_texture_transform_uv2(Ref<BaseMaterial3D> p_material);
  259. Error _serialize_version(Ref<GLTFState> p_state);
  260. Error _serialize_file(Ref<GLTFState> p_state, const String p_path);
  261. Error _serialize_gltf_extensions(Ref<GLTFState> p_state) const;
  262. public:
  263. // https://www.itu.int/rec/R-REC-BT.601
  264. // https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.601-7-201103-I!!PDF-E.pdf
  265. static constexpr float R_BRIGHTNESS_COEFF = 0.299f;
  266. static constexpr float G_BRIGHTNESS_COEFF = 0.587f;
  267. static constexpr float B_BRIGHTNESS_COEFF = 0.114f;
  268. private:
  269. // https://github.com/microsoft/glTF-SDK/blob/master/GLTFSDK/Source/PBRUtils.cpp#L9
  270. // https://bghgary.github.io/glTF/convert-between-workflows-bjs/js/babylon.pbrUtilities.js
  271. static float solve_metallic(float p_dielectric_specular, float p_diffuse,
  272. float p_specular,
  273. float p_one_minus_specular_strength);
  274. static float get_perceived_brightness(const Color p_color);
  275. static float get_max_component(const Color &p_color);
  276. public:
  277. Error append_from_file(String p_path, Ref<GLTFState> r_state, uint32_t p_flags = 0, String p_base_path = String());
  278. Error append_from_buffer(PackedByteArray p_bytes, String p_base_path, Ref<GLTFState> r_state, uint32_t p_flags = 0);
  279. Error append_from_scene(Node *p_node, Ref<GLTFState> r_state, uint32_t p_flags = 0);
  280. public:
  281. Node *generate_scene(Ref<GLTFState> p_state, float p_bake_fps = 30.0f, bool p_trimming = false, bool p_remove_immutable_tracks = true);
  282. PackedByteArray generate_buffer(Ref<GLTFState> p_state);
  283. Error write_to_filesystem(Ref<GLTFState> p_state, const String &p_path);
  284. public:
  285. Error _parse_gltf_state(Ref<GLTFState> p_state, const String &p_search_path);
  286. Error _parse_gltf_extensions(Ref<GLTFState> p_state);
  287. void _process_mesh_instances(Ref<GLTFState> p_state, Node *p_scene_root);
  288. void _generate_scene_node(Ref<GLTFState> p_state, Node *p_scene_parent,
  289. Node3D *p_scene_root,
  290. const GLTFNodeIndex p_node_index);
  291. void _generate_skeleton_bone_node(Ref<GLTFState> p_state, Node *p_scene_parent, Node3D *p_scene_root, const GLTFNodeIndex p_node_index);
  292. void _import_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player,
  293. const GLTFAnimationIndex p_index, const float p_bake_fps, const bool p_trimming, const bool p_remove_immutable_tracks);
  294. void _convert_mesh_instances(Ref<GLTFState> p_state);
  295. GLTFCameraIndex _convert_camera(Ref<GLTFState> p_state, Camera3D *p_camera);
  296. void _convert_light_to_gltf(Light3D *p_light, Ref<GLTFState> p_state, Ref<GLTFNode> p_gltf_node);
  297. GLTFLightIndex _convert_light(Ref<GLTFState> p_state, Light3D *p_light);
  298. void _convert_spatial(Ref<GLTFState> p_state, Node3D *p_spatial, Ref<GLTFNode> p_node);
  299. void _convert_scene_node(Ref<GLTFState> p_state, Node *p_current,
  300. const GLTFNodeIndex p_gltf_current,
  301. const GLTFNodeIndex p_gltf_root);
  302. #ifdef MODULE_CSG_ENABLED
  303. void _convert_csg_shape_to_gltf(CSGShape3D *p_current, GLTFNodeIndex p_gltf_parent, Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state);
  304. #endif // MODULE_CSG_ENABLED
  305. void _create_gltf_node(Ref<GLTFState> p_state,
  306. Node *p_scene_parent,
  307. GLTFNodeIndex p_current_node_i,
  308. GLTFNodeIndex p_parent_node_index,
  309. GLTFNodeIndex p_root_gltf_node,
  310. Ref<GLTFNode> p_gltf_node);
  311. void _convert_animation_player_to_gltf(
  312. AnimationPlayer *p_animation_player, Ref<GLTFState> p_state,
  313. GLTFNodeIndex p_gltf_current,
  314. GLTFNodeIndex p_gltf_root_index,
  315. Ref<GLTFNode> p_gltf_node, Node *p_scene_parent);
  316. void _check_visibility(Node *p_node, bool &r_retflag);
  317. void _convert_camera_to_gltf(Camera3D *p_camera, Ref<GLTFState> p_state,
  318. Ref<GLTFNode> p_gltf_node);
  319. #ifdef MODULE_GRIDMAP_ENABLED
  320. void _convert_grid_map_to_gltf(
  321. GridMap *p_grid_map,
  322. GLTFNodeIndex p_parent_node_index,
  323. GLTFNodeIndex p_root_node_index,
  324. Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state);
  325. #endif // MODULE_GRIDMAP_ENABLED
  326. void _convert_multi_mesh_instance_to_gltf(
  327. MultiMeshInstance3D *p_multi_mesh_instance,
  328. GLTFNodeIndex p_parent_node_index,
  329. GLTFNodeIndex p_root_node_index,
  330. Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state);
  331. void _convert_skeleton_to_gltf(
  332. Skeleton3D *p_scene_parent, Ref<GLTFState> p_state,
  333. GLTFNodeIndex p_parent_node_index,
  334. GLTFNodeIndex p_root_node_index,
  335. Ref<GLTFNode> p_gltf_node);
  336. void _convert_bone_attachment_to_gltf(BoneAttachment3D *p_bone_attachment,
  337. Ref<GLTFState> p_state,
  338. GLTFNodeIndex p_parent_node_index,
  339. GLTFNodeIndex p_root_node_index,
  340. Ref<GLTFNode> p_gltf_node);
  341. void _convert_mesh_instance_to_gltf(MeshInstance3D *p_mesh_instance,
  342. Ref<GLTFState> p_state,
  343. Ref<GLTFNode> p_gltf_node);
  344. GLTFMeshIndex _convert_mesh_to_gltf(Ref<GLTFState> p_state,
  345. MeshInstance3D *p_mesh_instance);
  346. void _convert_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player, String p_animation_track_name);
  347. Error _serialize(Ref<GLTFState> p_state, const String &p_path);
  348. Error _parse(Ref<GLTFState> p_state, String p_path, Ref<FileAccess> p_file);
  349. };
  350. #endif // GLTF_DOCUMENT_H