ItemPlayerAnimations
Documentation for the ItemPlayerAnimations asset type.
Location
Item/Animations
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ItemPlayerAnimations.schema.json" Schema
Animations object
Additional properties: ItemAnimation
WiggleWeights
WiggleWeights
Camera unknown
Any of
PullbackConfig unknown
Overrides the offset of first person arms when close to obstacles
Any of
UseFirstPersonOverrides
boolean
Determines whether or not to use FirstPersonOverride animations within ItemAnimations
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ItemPlayerAnimations.json",
"title": "ItemPlayerAnimations",
"description": "ItemPlayerAnimations asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"Animations": {
"type": "object",
"additionalProperties": {
"$ref": "common.schema.json#/$defs/ItemAnimation"
}
},
"WiggleWeights": {
"$ref": "common.schema.json#/$defs/WiggleWeights"
},
"Camera": {
"anyOf": [
{
"$ref": "common.schema.json#/$defs/CameraSettings"
},
{
"type": "null"
}
]
},
"PullbackConfig": {
"description": "Overrides the offset of first person arms when close to obstacles",
"anyOf": [
{
"$ref": "common.schema.json#/$defs/ItemPullbackConfig"
},
{
"type": "null"
}
]
},
"UseFirstPersonOverrides": {
"type": "boolean",
"description": "Determines whether or not to use FirstPersonOverride animations within ItemAnimations",
"default": false
}
}
}