mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 15:02:52 -05:00
Remove extension deserialization
This commit is contained in:
parent
68215664ec
commit
15de2eaa68
1 changed files with 0 additions and 3 deletions
|
@ -909,9 +909,6 @@ const parseScratchObject = function (object, runtime, extensions, zip) {
|
|||
if (object.hasOwnProperty('isStage')) {
|
||||
target.isStage = object.isStage;
|
||||
}
|
||||
if (object.hasOwnProperty('extensions')) {
|
||||
target.extensions = object.extensions;
|
||||
}
|
||||
Promise.all(costumePromises).then(costumes => {
|
||||
sprite.costumes = costumes;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue