Skip to content
Snippets Groups Projects
Commit 8653db38 authored by Julien Duroure's avatar Julien Duroure
Browse files

glTF exporter: add a hook for user extension to change json encoding

This allows user to use no indent in json, for example

Here is an example of hook:

```
def gather_gltf_encoded_hook(self, gltf_format, sort_order, export_settings):
    gltf_format.indent =  None
    gltf_format.separators = (',', ':')
```
parent 43477e00
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment