I have some students who are sharing sprite costumes and backgrounds through Google Classroom for Pair Programming on Game Jam.
I cannot figure out how to expand the drawing window from 100x100 to larger so the costumes paste in correctly. Costumes also mentions layers, but I cannot find the layers tab either.
For example, a student made a large animal sprite using an existing one so their sprite size is 200x 380. When I paste it into another student’s costume creation tab, the animal is cut off because the natural window size is 100x100. It would be too complicated to find the sprite they used to make their own, delete the entire sprite, then paste the new one in. This class has 24 students.
Thank you
Hello @njackson,
in spritelab this may be a bit more complicated if this is what your talking about since we are probably going to have to download the image from the API path and import it manually in order to get proper image sizing
https://studio.code.org/v3/animations/<project-id>
in this path you are able to fetch all available animations you have made for the project including ones your students have made once you found the one you are looking for you can then add it on to the current url path to fetch it here’s an example link that i added in my demo project
https://studio.code.org/v3/animations/lq1TjodP6XWmppleOYN8t6engbvvzDyemt-YOgWi0R0/046a0340-7585-4ae7-b1a3-e684e6343e33.png
which will return this image
of which you can then save and import to another project with the correct size not sure if there are any other workarounds at the moment but this is the best one i have currently
Varrience