How to find drawed image from dynamicTexture?

Hello,
I am adding multiple images on a dynamicTexture and I must be able to get each added image.

By experimenting I havent found anything that will give me an array of all added images, so my question is:
How would I be able to find added images from dynamicTexture?

There is my pg:

Hi @babyloner

Everytime you added a new image, it overwrites the pixels values stored in the canvas associated with the dynamicTextures. It is not possible to retrieve the original images you added. You need to manage the image add/remove history yourself.

2 Likes

Thanks you, I am going to think about it.