How is it possible to resize my sprite

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By treflon

I have a png tile 64px x 64px added to the texture of the sprite.
I would like to have 32px x 32
or smaller value .

:bust_in_silhouette: Reply From: estebanmolca

In the properties of the sprite, there is the Scale property, when it is in (1,1) it means that it maintains the original scale of the sprite texture. (0.5, 0.5) would reduce the size of the sprite by half. If: scale (1,1) → 32x32px, then: scale (0.5,0.5) → 16x16px.
If your question is about modifying the original texture size, as far as I know, it has to be in an external image editor.

thanks, I think it would do the job .

treflon | 2020-01-11 08:27