Hello, a question, is it possible to paste a tile of a tilemap object on the canvas ?.
For example, I have a 64x64 image and I want to use paster to paste an area of that image that occupies 16x16, I do not want to paste the complete 64x64 image.
Paster does not allow me to choose the area of origin that will be pasted in the canvas, paster simply paste objects or URI images but it does not allow to define the size of the source area (in this case it will be 16x16 of a 64x64 image) that will be pasted in the Canvas.
I would like to define:
X1 (x origin)
Y1 (y origin)
X2 (width)
Y2 (high)
So I would do, for example:
X1 = 16
Y1 = 16
X2 = 32
Y2 = 32
That is a 16x16 tile contained in the tileset of the tilemap object image, I select the area (which in this case would be a 16x16 tile) that I want to paste onto the canvas.
I hope you understand what I mean because English is not my mother tongue.