mirror of
https://github.com/scratchfoundation/scratch-parser.git
synced 2025-08-28 22:18:45 -04:00
22 lines
761 B
JSON
22 lines
761 B
JSON
{
|
|
"$id": "https://scratch.mit.edu/sprite2_schema.json",
|
|
"description": "Scratch 2.0 project schema",
|
|
"type": "object",
|
|
"allOf": [
|
|
{"$ref": "sb2_definitions.json#/definitions/sprite_object"},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"scratchX": {"type": "number"},
|
|
"scratchY": {"type": "number"},
|
|
"scale": {"type": "number"},
|
|
"direction": {"type": "number"},
|
|
"rotationStyle": {"type": "string"},
|
|
"isDraggable": {"type": "boolean"},
|
|
"indexInLibrary": {"type": "number"},
|
|
"visible": {"type": "boolean"},
|
|
"spriteInfo": {"type": "object"}
|
|
}
|
|
}
|
|
]
|
|
}
|