Search found 39 matches
- 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: 278
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...
- 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: 278
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....
- 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: 278
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:
(The side image is defined like this, btw:
Code: Select all
image side mc:
"mc"
zoom 0.7- Tue Jun 07, 2022 2:04 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: 278
Re: Composite side image glitches out, but static image doesn't. Ren'Py bug or user error?
VERY interesting. Let me update to 8.0 and see what happens.
- 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: 278
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), ConditionSwitch("hair_type in list_of_...
- 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: 278
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...
- Mon May 23, 2022 11:31 pm
- Forum: Ren'Py Questions and Announcements
- Topic: "show"ing a full screen image without hiding dialog window?
- Replies: 10
- Views: 327
- Mon May 23, 2022 11:30 pm
- Forum: Ren'Py Questions and Announcements
- Topic: "show"ing a full screen image without hiding dialog window?
- Replies: 10
- Views: 327
- 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: 327
Re: "show"ing a full screen image without hiding dialog window?
let me see if i can figure something out. one second
- 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: 327
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...
that SHOULD do the trick :3
like...
Code: Select all
window show
show whatever
"text text text{nw}"
show whatever
extend "more text more text more text"- Sat May 21, 2022 5:17 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Composite image questions--% wildcard tag?
- Replies: 12
- Views: 353
Re: Composite image questions--% wildcard tag?
MY GOD, IT FREAKING WORKS.
You're a literal life saver. Thank you SO MUCH.
You're a literal life saver. Thank you SO MUCH.
- Sat May 21, 2022 3:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Composite image questions--% wildcard tag?
- Replies: 12
- Views: 353
Re: Composite image questions--% wildcard tag?
Is this just not solvable, then? 

- Sat May 21, 2022 2:41 am
- Forum: Ren'Py Questions and Announcements
- Topic: Composite image questions--% wildcard tag?
- Replies: 12
- Views: 353
Re: Composite image questions--% wildcard tag?
Thank you for the help, but unfortunately it doesn't work 
- Fri May 20, 2022 3:20 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Composite image questions--% wildcard tag?
- Replies: 12
- Views: 353
Re: Composite image questions--% wildcard tag?
This doesn't work... Invalid syntax, it says. :( init python: list_of_hairstyles_hunder = ["hair5", "hair6"] image mc = Composite( (467, 946), (0, 0), "images/bodies/body[body_type]/body[body_type]_[skin_color].png", if "[hair_type]" is in list_of_hairstyles_hunder: (0, 0), "images/hairunder/hunder[...
- Fri May 20, 2022 3:07 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Composite image questions--% wildcard tag?
- Replies: 12
- Views: 353
Re: Composite image questions--% wildcard tag?
Thank you for answering!!! Okay, first of all, there's some more of the code. init: default body_type = 1 default body_type_max = 4 default hair_type = 1 default hair_type_max = 6 default hair_color = 1 default hair_color_max = 13 default face = 1 default face_max = 5 default skin_color = 1 default ...