2 characters appearing at the same time?
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
2 characters appearing at the same time?
(Ah, finally the right thread). Anyway, is it possible to have 2 characters appearing on the screen at the same time? If so, how do I do it?
Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
- Twar3Draconis
- Regular
- Posts: 129
- Joined: Thu Apr 19, 2007 12:07 am
- Location: Michigan, United States, Terra
- Contact:
Re: 2 characters appearing at the same time?
Would you not just show a character?
?
Code: Select all
show blahone normal at right
show blahtwo normal at left- 000
- Regular
- Posts: 94
- Joined: Mon Dec 24, 2007 11:09 am
- Projects: Ren'Py Russian distributive
- Location: Уфа, РБ, Россия
- Contact:
Re: 2 characters appearing at the same time?
???Cybeat wrote:(Ah, finally the right thread). Anyway, is it possible to have 2 characters appearing on the screen at the same time? If so, how do I do it?
You cannot talk about two character images, right?
So, what do you want, two text windows with different characters' lines? or something other?
<feels sowwy for his Engrish>
Re: 2 characters appearing at the same time?
No, not like that. I mean, when I want 2 character image to appear, I want them to appear simultaneously. If I did
show character1 with dissolve
show character2 with dissolve
character2 appears after character1, not at the same time.
show character1 with dissolve
show character2 with dissolve
character2 appears after character1, not at the same time.
Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
- akemicchi
- Veteran
- Posts: 465
- Joined: Mon Dec 31, 2007 11:22 pm
- Projects: Magicians of Delphine, Panaderia: Ensaimada, SweetTooth!, XOXO Droplets
- Deviantart: littlebabyshoes
- Contact:
Re: 2 characters appearing at the same time?
You can just do what Twar3Draconis said and just show the characters without dissolve... 8D;
But as for having multiple images with transitions appear simultaneously... Well, I have no idea how you could do that; maybe someone else knows. XD; Doesn't Ren'Py finish the transition before continuing on to the next line??
EDIT:
Have you considered just keeping the effect of them appearing one after the other, or is that out of the question? Because I think having them appear separately could be a nice effect, too~
But as for having multiple images with transitions appear simultaneously... Well, I have no idea how you could do that; maybe someone else knows. XD; Doesn't Ren'Py finish the transition before continuing on to the next line??
EDIT:
Have you considered just keeping the effect of them appearing one after the other, or is that out of the question? Because I think having them appear separately could be a nice effect, too~
Re: 2 characters appearing at the same time?
This works for me. Both characters dissolve at the same time.
Code: Select all
show character1 at left
show character2 at right
with dissolve
- chronoluminaire
- Eileen-Class Veteran
- Posts: 1153
- Joined: Mon Jul 07, 2003 4:57 pm
- Completed: Elven Relations, Cloud Fairy, When I Rule The World
- Tumblr: alextfish
- Skype: alextfish
- Location: Cambridge, UK
- Contact:
Re: 2 characters appearing at the same time?
Yes, Mochiron's way to do it is the right way.
The thing is,is just a convenient Ren'Py shortcut for
Which means "finish everything on the previous lines, and then show char1 with dissolve".
The thing is, this meansis the same as:
Which dissolves in char1, then dissolves in char2.
If you want to make them both dissolve in at the same time, then you need to put the with statement on its own line:And you usually don't need the "with None" at the start.
The thing is,
Code: Select all
show char1 with dissolveCode: Select all
with None
show char1
with dissolveThe thing is, this means
Code: Select all
show char1 with dissolve
show char2 with dissolveCode: Select all
with None
show char1
with dissolve
with None
show char2
with dissolveIf you want to make them both dissolve in at the same time, then you need to put the with statement on its own line:
Code: Select all
with None
show char1
show char2
with dissolve
Last edited by chronoluminaire on Thu May 29, 2008 10:40 am, edited 1 time in total.
I released 3 VNs, many moons ago: Elven Relations (IntRenAiMo 2007), When I Rule The World (NaNoRenO 2005), and Cloud Fairy (the Cute Light & Fluffy Project, 2009).
More recently I designed the board game Steam Works (published in 2015), available from a local gaming store near you!
More recently I designed the board game Steam Works (published in 2015), available from a local gaming store near you!
Re: 2 characters appearing at the same time?
@chronoluminaire and Mochiron: Thanks. It worked.
Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
http://lemmasoft.renai.us/forums/viewto ... =16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai
Who is online
Users browsing this forum: Bing [Bot]




