Skip to content
Snippets Groups Projects
Commit 579c61ae authored by Karishma Chadha's avatar Karishma Chadha
Browse files

Treat zips as sprite files as well.

parent 81927ecf
No related branches found
No related tags found
No related merge requests found
...@@ -175,10 +175,9 @@ const soundUpload = function (fileData, fileType, soundName, storage, handleSoun ...@@ -175,10 +175,9 @@ const soundUpload = function (fileData, fileType, soundName, storage, handleSoun
const spriteUpload = function (fileData, fileType, spriteName, storage, handleSprite) { const spriteUpload = function (fileData, fileType, spriteName, storage, handleSprite) {
switch (fileType) { switch (fileType) {
case '': { // We think this is a .sprite2 or .sprite3 file case '':
case 'archive/zip': { // We think this is a .sprite2 or .sprite3 file
handleSprite(new Uint8Array(fileData)); handleSprite(new Uint8Array(fileData));
// TODO VM addSprite function should handle
// buffers directly and get unpacked in scratch-parser
return; return;
} }
case 'image/svg+xml': case 'image/svg+xml':
...@@ -209,10 +208,6 @@ const spriteUpload = function (fileData, fileType, spriteName, storage, handleSp ...@@ -209,10 +208,6 @@ const spriteUpload = function (fileData, fileType, spriteName, storage, handleSp
})); }));
return; return;
} }
// case 'archive/zip': { // sprite2 / sprite3
// handleSprite(JSON.stringify(fileData.toString('utf-8')));
// return;
// }
default: { default: {
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment