Show and renpy.show positioned differently
Posted: Sat Apr 16, 2022 1:14 pm
I'm doing a very simple test and can't figure out why this is...
If I have:
The character shows up at one location.
If I replace that code with:
The character shows up much higher and to the left.
Question is - why?
Is this expected behaviour? Is there something I should do to make it act the same?
Or should I just expect the same discrepancy and compensate for it?
If I have:
Code: Select all
show rightchar:
xpos 1200
ypos 350If I replace that code with:
Code: Select all
$renpy.show ('rightchar', at_list=[Position(xpos=1200,ypos=350)])Question is - why?
Is this expected behaviour? Is there something I should do to make it act the same?
Or should I just expect the same discrepancy and compensate for it?