Search found 5 matches

by Cosmoastidae
Sat Apr 11, 2020 4:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Readjusting picture menu (dialogue) choices to be side by side
Replies: 2
Views: 319

Readjusting picture menu (dialogue) choices to be side by side

I would like to make the dialogue choices, which in this case, are images, side by side instead ontop of each other. I've looked through a few forum posts, and nothing seems to be working. I have the images fully showing, but they're on top of each other, which causes one to cut out. Is there a way ...
by Cosmoastidae
Sat Mar 28, 2020 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add text blips over character dialogue?
Replies: 4
Views: 417

Re: How to add text blips over character dialogue?

Ok, it took me much to long, but i realized that the characters needed to be UNDER the adv character

thank you so much, its fully working now!
by Cosmoastidae
Sat Mar 28, 2020 8:04 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add text blips over character dialogue?
Replies: 4
Views: 417

Re: How to add text blips over character dialogue?

init python: def blip_callback(event, **kwargs): if event == "show": renpy.music.play("audio/blipmale.wav", channel="sound", loop=True) elif event == "slow_done" or event == "end": renpy.music.stop(channel="sound") adv = Character(None, ca...
by Cosmoastidae
Sat Mar 28, 2020 7:01 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add text blips over character dialogue?
Replies: 4
Views: 417

How to add text blips over character dialogue?

I've found a lot of old posts and even on the ren'py forum, the old one, there is a tutorial but I cant find anything on how to do it on the current version. I'm looking to add a text blip over the dialogue until it stops, like in Pheonix Wright. Right now I'm using the voice feature to play audio c...