Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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 :(

Thanks for the message, all the credit goes to @sutemo, they are the greatest artist.


What size of images do you need?

hi! thanks for responding, I was able to reduce the image size by 25% which fixed the issue. Thanks though!!! ^^

Awesome! I am glad to hear.

(2 edits)

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 :)