hi!! so I LOVE the sprites but they’re a little big for renpy, is there an option to reduce the size pls? I actually ADORE them but I can’t get over how large they appear on screen :(
Viewing post in Character Creator - Sutemo comments
hey there idk if you have found the solution or not but for anyone who is having this kind of problem you can reduce the size like this
Just define your image like this
image yuri happy: "sprites/yuri smile.png" #path location to sprite image zoom 0.20 # adjust this to resize the image
This makes the sprite appear smaller on screen! You can change the number to whatever size fits your game best (zoom 1.0 = full size, 0.5 = half, etc.).
and then
Show it in-game like this:
show yuri happy # this will show your adjusted image in the game
Hope this helps! 😊 of course this is basic there are many other forms you can use to do it like using
show yuri smile at Transform(zoom=0.6) # this will show your adjusted image in the game
using transform u can also do something like this if want :)