-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b45ca52
commit da8a416
Showing
72 changed files
with
2,074 additions
and
491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
Documentation~/VGO/specification/2.5/schema/vgo.ps.customData.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"$id": "vgo.ps.customData", | ||
"type": "object", | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"stream": { | ||
"anyOf": [ | ||
{ | ||
"enum": [ 0 ], | ||
"description": "Custom1", | ||
"type": "integer" | ||
}, | ||
{ | ||
"enum": [ 1 ], | ||
"description": "Custom2", | ||
"type": "integer" | ||
} | ||
] | ||
}, | ||
"mode": { | ||
"anyOf": [ | ||
{ | ||
"enum": [ 0 ], | ||
"description": "Disabled", | ||
"type": "integer" | ||
}, | ||
{ | ||
"enum": [ 1 ], | ||
"description": "Vector", | ||
"type": "integer" | ||
}, | ||
{ | ||
"enum": [ 2 ], | ||
"description": "Color", | ||
"type": "integer" | ||
} | ||
] | ||
}, | ||
"vector": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"$id": "vgo.ps.minMaxCurve", | ||
"type": [ | ||
"object", | ||
"null" | ||
] | ||
} | ||
}, | ||
"color": { | ||
"$id": "vgo.ps.minMaxGradient", | ||
"type": [ | ||
"object", | ||
"null" | ||
] | ||
} | ||
} |
15 changes: 14 additions & 1 deletion
15
Documentation~/VGO/specification/2.5/schema/vgo.ps.customDataModule.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
{ | ||
"$id": "vgo.ps.customDataModule", | ||
"type": "object" | ||
"type": "object", | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"customData": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"$id": "vgo.ps.customData", | ||
"type": "object" | ||
} | ||
} | ||
} |
Oops, something went wrong.