ItemSoundSet
Documentation for the ItemSoundSet asset type.
Location
Audio/ItemSounds
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ItemSoundSet.schema.json" Schema
SoundEvents object
Drag
string
Drop
string
Additional properties: string
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ItemSoundSet.json",
"title": "ItemSoundSet",
"description": "ItemSoundSet asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"SoundEvents": {
"type": "object",
"title": "Map of ItemSoundEvent",
"properties": {
"Drag": {
"type": "string"
},
"Drop": {
"type": "string"
}
},
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"enum": [
"Drag",
"Drop"
]
}
}
}
}