Search found 4 matches

by immeria
Thu May 18, 2023 2:43 am
Forum: Ren'Py Questions and Announcements
Topic: How hide side_image with define config.side_image_tag?
Replies: 7
Views: 344

Re: How hide side_image with define config.side_image_tag?

_side_image_tag is like dynamic config.side_image_tag If _side_image_tag is not None, it takes precedence over config.side_image_tag . # define config.side_image_tag = "mlada" # Not needed in this option label start: $ _side_image_tag = "mlada" # Can be used to set side image ta...
by immeria
Wed May 17, 2023 3:03 pm
Forum: Ren'Py Questions and Announcements
Topic: How hide side_image with define config.side_image_tag?
Replies: 7
Views: 344

Re: How hide side_image with define config.side_image_tag?

Could you paste your code how you defined your characters maybe there is some misunderstanding? here is MC: default m = Character("[name]", image="mlada", color="#D02E3E", who_outlines=[ (1, "403A3A") ] ) define config.side_image_tag = "mlada" here ...
by immeria
Wed May 17, 2023 6:17 am
Forum: Ren'Py Questions and Announcements
Topic: How hide side_image with define config.side_image_tag?
Replies: 7
Views: 344

Re: How hide side_image with define config.side_image_tag?

If you want to show your MC all the time, you don't have to use side images. They serve a special purpose. What purpose? I use this formula because I didn't want to write show for mc image every time the scene (background) changed. Is there really no way to somehow overlap this formula with another...
by immeria
Tue May 16, 2023 3:35 pm
Forum: Ren'Py Questions and Announcements
Topic: How hide side_image with define config.side_image_tag?
Replies: 7
Views: 344

How hide side_image with define config.side_image_tag?

How hide side_image with define config.side_image_tag? I use this because I want to see the MC all the time, even she doesn't talk, but I also have a few scenes where she doesn't participate. I read the tutorial on the official page, but did not understand (I'm really new to this) how I can hide and...