GameModeType
Documentation for the GameModeType asset type.
Location
Entity/GameMode
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/GameModeType.schema.json" Schema
PermissionGroups arraynull
Array items: string
InteractionsOnEnter unknown
Any of
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "GameModeType.json",
"title": "GameModeType",
"description": "GameModeType asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"PermissionGroups": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"InteractionsOnEnter": {
"anyOf": [
{
"type": "string",
"title": "Reference to RootInteraction"
},
{
"$ref": "RootInteraction.json#"
},
{
"type": "null"
}
]
}
}
}