Turn multiple objects into one?

I’m making a simple drawing game that has the player drawing by just every frame creating a circular object on the cursor. I want the player to be able to drag and drop, move and click a button to spawn in another copy of what they drew. Is there anyway that’s possible?

There are ways to grab a screen shot and put it into a sprite. Are you looking for a way to just copy the image or do you want to copy it and then edit it?

Id like it to be able to be dragged rotated and maybe even having a paint bucket tool which I think I have figured out unless it doesnt works with a snapshot. Is the screenshot the easiest way it probably is

The snapshot extension would create a non-editable image.

You could use the Read Pixels extension to scan the shape painter and draw it into another shape painter.

There’s probably a better way to do it through Javascript but I have no experience with using Javascript in that way.

I tried doing a simple scan. It was extremely slow. I guess it would depend on the pixel size.

I guess it depends on what you’re drawing. You could save the draw actions in an array and replay them. Or maybe draw on 2 shape painters at a time. Then switch to the copy and create another shape painter as the copy destination. Again, it depends.