Ah, sorry. Let me rephrase. I was asking for a way to make the image disappear (because the hide statement will not work for an image like that). However, I found a way to get it to disappear.
But, I have a new problem. ^^;
I want the expressions to change as well. Here's my code in the screens.rpy:
Code: Select all
if side_chara: #This variable indicates whether I want a side image or not
if side_image:
add side_image
else
add Image("pose1-normal-normal_a.png", xalign = 0.0, yalign = 1.0)
else:
if side_image:
add side_Image
else:
null
The problem is, while I can get my image to disappear, I cannot get my side image to appear. Is there something wrong with my code, perhaps? I have no errors popping up, just the side image will not appear. Also, I tested my variable "side_chara" both true and false before the side image would appear to make sure it wasn't the cause of the problem, but but nothing changed. And when I put back the original code (below) my side image will appear.
Code: Select all
if side_image:
add side_image
else:
add SideImage() xalign 0.0 yalign 1.0
And, also, I'm assuming that if I am able to get my side image to appear, it will appear
above the image I set up, right? I can test that and figure it out later.
Thank you~