- Apr 28, 2020
- 1,571
- 9,135
Ren'py is designed so you can easily type:
and then your scene is done.Code:label conversation: scene show bg living_room show yuki casual with dissolve "Dialogue." show yuki casual mad "Dialogue." show yuki casual apologetic "Dialogue." hide yuki with dissolve return
Code:
label conversation1:
scene livingroom_yuki_conversation1 with dissolve
"dialogue"
scene livingroom_yuki_conversation1_mad
"dialogue"
scene livingroom_yuki_conversation1_apologetic
"dialogue"
return
I'd have to do the same with sprites. Well, I'd have less images I guess because the living room would stay the same even if I bring ten other characters along with Yuki, and Yuki in a casual outfit would look the same in my living room, outside, at the coffee shop and everywhere else where she can wear itCompare having one "bg living_room" to 150 event stills that you need to keep track of, how to name them descriptively, and figure out how to edit them together and when you want to reuse them, and they all need their own transitions and transforms, and you have to keep flipping back and forth to your file browser just to see what they are because Ren'py is text-based.