Misc changes to the GLTF module before audio PR

This commit is contained in:
Aaron Franke 2024-01-10 16:08:25 -06:00
parent 26b1fd0d84
commit d36a34edb7
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
11 changed files with 91 additions and 11 deletions

View file

@ -185,7 +185,6 @@ Error GLTFDocumentExtension::serialize_texture_json(Ref<GLTFState> p_state, Dict
Error GLTFDocumentExtension::export_node(Ref<GLTFState> p_state, Ref<GLTFNode> p_gltf_node, Dictionary &r_dict, Node *p_node) {
ERR_FAIL_NULL_V(p_state, ERR_INVALID_PARAMETER);
ERR_FAIL_NULL_V(p_gltf_node, ERR_INVALID_PARAMETER);
ERR_FAIL_NULL_V(p_node, ERR_INVALID_PARAMETER);
Error err = OK;
GDVIRTUAL_CALL(_export_node, p_state, p_gltf_node, r_dict, p_node, err);
return err;