diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-07-10 00:18:55 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-07-10 00:24:10 -0500 |
commit | 07400f2065c3674b695237e7ada9ef6f64acc11c (patch) | |
tree | 69947ab4fda9a73e8963c29f294ff3f8b586fa3d /modules/gltf/doc_classes | |
parent | e4be11b2733f2cbb213a2146d606d0839b38a236 (diff) | |
download | redot-engine-07400f2065c3674b695237e7ada9ef6f64acc11c.tar.gz |
Add copyright to GLTFState
Diffstat (limited to 'modules/gltf/doc_classes')
-rw-r--r-- | modules/gltf/doc_classes/GLTFState.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gltf/doc_classes/GLTFState.xml b/modules/gltf/doc_classes/GLTFState.xml index 32023de696..44b0d124e7 100644 --- a/modules/gltf/doc_classes/GLTFState.xml +++ b/modules/gltf/doc_classes/GLTFState.xml @@ -8,6 +8,7 @@ GLTFState can be populated by [GLTFDocument] reading a file or by converting a Godot scene. Then the data can either be used to create a Godot scene or save to a GLTF file. The code that converts to/from a Godot scene can be intercepted at arbitrary points by [GLTFDocumentExtension] classes. This allows for custom data to be stored in the GLTF file or for custom data to be converted to/from Godot nodes. </description> <tutorials> + <link title="GLTF asset header schema">https://github.com/KhronosGroup/glTF/blob/main/specification/2.0/schema/asset.schema.json"</link> </tutorials> <methods> <method name="add_used_extension"> @@ -269,6 +270,9 @@ </member> <member name="buffers" type="PackedByteArray[]" setter="set_buffers" getter="get_buffers" default="[]"> </member> + <member name="copyright" type="String" setter="set_copyright" getter="get_copyright" default=""""> + The copyright string in the asset header of the GLTF file. This is set during import if present and export if non-empty. See the GLTF asset header documentation for more information. + </member> <member name="create_animations" type="bool" setter="set_create_animations" getter="get_create_animations" default="true"> </member> <member name="glb_data" type="PackedByteArray" setter="set_glb_data" getter="get_glb_data" default="PackedByteArray()"> |