Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
I'm trying to use Crop()-ed images when displaying characters (the character-maker software I'm using currently doesn't allow cropped exports). Now I've tried making Crop()-ed character images appear at different transforms, and I noticed that they don't appear at the transforms I made myself.
## Transforms: left and right (preset)
show wakana at left with dissolve
pause 1.0
show nagi at right with dissolve
pause 1.0
hide wakana with dissolve
pause 1.0
hide nagi with dissolve
pause 1.0
## User-made transforms: left_side and right_side
show wakana at left_side with dissolve
pause 1.0
show nagi at right_side with dissolve
pause 1.0
hide wakana with dissolve
pause 1.0
hide nagi with dissolve
pause 1.0
## Transforms: center (preset)
show wakana at center with dissolve
pause 1.0
hide wakana with dissolve
pause 1.0
show nagi at center with dissolve
pause 1.0
hide nagi with dissolve
pause 1.0
Remix wrote: ↑Sat Sep 29, 2018 8:24 am
Is it a size/anchor issue? I mean, does it seem the anchor might be interpreting the uncropped size rather than cropped?