Search found 41 matches

by edgebug
Fri Aug 04, 2023 7:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Need help with Warning Message before Game Menu
Replies: 2
Views: 224

Re: Need help with Warning Message before Game Menu

it looks like you haven't defined the styles for "balloon" or "popup." checking out https://www.renpy.org/doc/html/style.html might help?
by edgebug
Thu Jul 20, 2023 6:57 pm
Forum: Ren'Py Cookbook
Topic: yet another phone system + UI
Replies: 20
Views: 15549

Re: yet another phone system + UI

(fixed)
by edgebug
Tue Jun 07, 2022 3:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
Replies: 9
Views: 475

Re: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?

The say screen (dialogue box) is shorter for the MC (the character which has the side image) so that the side image does not overlap and cover up the text! :D I assigned the MC a different image and set of padding for their textbox when I defined the character. $ you = Character('[playername]', imag...
by edgebug
Tue Jun 07, 2022 2:12 am
Forum: Ren'Py Questions and Announcements
Topic: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
Replies: 9
Views: 475

Re: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?

I found the problem, but I don't know how to solve it. In order to make the character slide nicely off and on the screen, I have the following code: transform change_transform(old, new): contains: old yalign 1.0 xpos 0.0 xanchor 0.0 linear 0.2 xanchor 2.0 contains: new yalign 1.0 xpos 0.0 xanchor 1....
by edgebug
Tue Jun 07, 2022 2:09 am
Forum: Ren'Py Questions and Announcements
Topic: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
Replies: 9
Views: 475

Re: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?

Okay, it still totally happens in 8.0 for me. Let me see if I can recreate it in a sample game.

(The side image is defined like this, btw:

Code: Select all

image side mc:
    "mc"
    zoom 0.7
by edgebug
Tue Jun 07, 2022 1:44 am
Forum: Ren'Py Questions and Announcements
Topic: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
Replies: 9
Views: 475

Re: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?

image mc = Composite( (467, 946), (0, 0), ConditionSwitch("hair_type in list_of_hunder", "images/hairunder/hunder[hair_type]/hunder[hair_type]_[hair_color].png", "True", Null()), (0, 0), "images/bodies/body[body_type]/body[body_type]_[skin_color].png", (0, 0)...
by edgebug
Tue Jun 07, 2022 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
Replies: 9
Views: 475

Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?

Basically what it says on the tin. A video of the issue is linked below so you can see what I'm talking about. https://edgbugimagehost.tumblr.com/post/686375849296019456 See how the right side of the image flickers where it overlaps the textbox image underneath? It does this whenever the textbox 're...
by edgebug
Mon May 23, 2022 11:24 pm
Forum: Ren'Py Questions and Announcements
Topic: "show"ing a full screen image without hiding dialog window?
Replies: 10
Views: 495

Re: "show"ing a full screen image without hiding dialog window?

let me see if i can figure something out. one second
by edgebug
Mon May 23, 2022 11:16 pm
Forum: Ren'Py Questions and Announcements
Topic: "show"ing a full screen image without hiding dialog window?
Replies: 10
Views: 495

Re: "show"ing a full screen image without hiding dialog window?

i think that if you put "window show" before the sequence, the window will keep on screen :)
like...

Code: Select all

window show
show whatever
"text text text{nw}"
show whatever
extend "more text more text more text"
that SHOULD do the trick :3
by edgebug
Sat May 21, 2022 5:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Composite image questions--% wildcard tag?
Replies: 12
Views: 571

Re: Composite image questions--% wildcard tag?

MY GOD, IT FREAKING WORKS.

You're a literal life saver. Thank you SO MUCH.
by edgebug
Sat May 21, 2022 3:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Composite image questions--% wildcard tag?
Replies: 12
Views: 571

Re: Composite image questions--% wildcard tag?

Is this just not solvable, then? 😬
by edgebug
Sat May 21, 2022 2:41 am
Forum: Ren'Py Questions and Announcements
Topic: Composite image questions--% wildcard tag?
Replies: 12
Views: 571

Re: Composite image questions--% wildcard tag?

Thank you for the help, but unfortunately it doesn't work :(