Search found 4 matches

by Jarly
Wed Jun 26, 2019 6:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create permanent image on the screen?
Replies: 7
Views: 850

Re: [SOLVED] How to create permanent image on the screen?

marker screen stays above yes/no confirmation screen This isn't a problem. Actually, I wanted that text screen was permanent (probably should say that right away, but I somehow forgot about text part and concentrate at "background image" part :o ). It didn't have any overlaps with yes/no ...
by Jarly
Wed Jun 26, 2019 6:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create permanent image on the screen?
Replies: 7
Views: 850

Re: How to create permanent image on the screen?

Okay, that was a good advice. Actually, I missed completely documentation part about layers. Code like this works perfectly: define config.top_layers = [ 'toplayer' ] image logo1 = Image("logo.png", xalign=0.95, yalign=0.05) ... label start: ... show logo1 onlayer toplayer Many thanks.
by Jarly
Wed Jun 26, 2019 4:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create permanent image on the screen?
Replies: 7
Views: 850

Re: How to create permanent image on the screen?

Thanks, that works mostly fine.
But it's still affected by transition like this:

Code: Select all

define fadeslow = Fade(1.5, 1.0, 1.5, color="#fff")
...
label start:
...
    scene bg cafe dusk
    with fadeslow
Image turns white with the rest of the screen.
Any methods to avoid this?
by Jarly
Wed Jun 26, 2019 9:11 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create permanent image on the screen?
Replies: 7
Views: 850

[SOLVED] How to create permanent image on the screen?

Good day, everyone.
I wanted that certain image was on the screen all the time. For example, it shouldn't be affected by any transitions. I tried to use "ShowingSwitch" with "None" condition, but image has gone after wipe transition.
Any tips?