Read sprite costume names from JSON, and write currentCostume to JSON

This commit is contained in:
morant 2017-02-07 20:12:55 -05:00
parent 6b545ea16d
commit ed978e3062
2 changed files with 2 additions and 1 deletions

View file

@ -70,7 +70,7 @@ var parseScratchObject = function (object, runtime) {
// @todo: Make sure all the relevant metadata is being pulled out. // @todo: Make sure all the relevant metadata is being pulled out.
sprite.costumes.push({ sprite.costumes.push({
skin: costume.skin, skin: costume.skin,
name: costume.costumeName, name: costume.name,
bitmapResolution: costume.bitmapResolution, bitmapResolution: costume.bitmapResolution,
rotationCenterX: costume.rotationCenterX, rotationCenterX: costume.rotationCenterX,
rotationCenterY: costume.rotationCenterY rotationCenterY: costume.rotationCenterY

View file

@ -719,6 +719,7 @@ RenderedTarget.prototype.toJSON = function () {
direction: this.direction, direction: this.direction,
costume: this.getCurrentCostume(), costume: this.getCurrentCostume(),
costumeCount: this.getCostumes().length, costumeCount: this.getCostumes().length,
currentCostume: this.currentCostume,
visible: this.visible, visible: this.visible,
rotationStyle: this.rotationStyle, rotationStyle: this.rotationStyle,
blocks: this.blocks._blocks, blocks: this.blocks._blocks,