Model Creation Tutorial
Understanding Ayame's model format is essential for model creators. Below is a standard example of metadata.json
:
warning
The JSON standard does not support comments, please remove them when using.
metadata.json
{
"name": "example_model",
"authors": [
"Me!!"
],
"description": "A brief description of the example model.",
// It is highly recommended to use existing licenses, such as CC licenses.
"license": "CC0-1.0",
// You can fill in the website where your model is published here, such as the URL of your model release video, and you can also fill in multiple entries.
"links": [
"https://example.org"
],
"tags": [
"example-tag"
],
"animations": [
],
"version": "1.0"
}