Engine Data Bucket
Engine data bucket is used by Sonolus app to populate judgment graphs in result screen.
Syntax
type EngineDataBucket = {
sprites: EngineDataSprite[]
}
type EngineDataSprite = {
id: SkinSprite
fallbackId?: SkinSprite
x: number
y: number
w: number
h: number
rotation: number
}
Examples
{
"sprites": [
{
"id": 1001,
"x": 0,
"y": 0,
"w": 2,
"h": 2,
"rotation": 0
}
]
}