Search found 21 matches

by bDunks
Wed Jan 09, 2019 8:52 am
Forum: Ren'Py Questions and Announcements
Topic: Play Audio THEN Show Dialog
Replies: 4
Views: 386

Re: Play Audio THEN Show Dialog

Imperf3kt wrote: Wed Jan 09, 2019 12:40 am I haven't used pause in a long time. It may be Pause instead (capital P)

If you wish to avoid using pause, you can achieve a similar result with the wait text tag

Code: Select all

    play sound "mysound.mp3"
    b "{w=1.0}What was that?" 
I had not seen that yet.
Thank you! :)
by bDunks
Tue Jan 08, 2019 11:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Play Audio THEN Show Dialog
Replies: 4
Views: 386

Re: Play Audio THEN Show Dialog

Use the pause statement play sound "sound/monster.mp3" $pause(1) b "What was that?" Adjust the number in the pause statement to adjust the wait time in seconds. So, for example, two and a half seconds would be $pause(2,5) Oops! Forgot to put in the question how to do this withou...
by bDunks
Tue Jan 08, 2019 11:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Play Audio THEN Show Dialog
Replies: 4
Views: 386

Play Audio THEN Show Dialog

Right now I am trying to play a sound, then have dialog show up after. Not both at the same time. I would like it to go like this. voice "sound/monster.mp3" #plays scary sound b "What was that?!!!" #When audio completes, b says this. Is there a way to do this without pause x? Tha...
by bDunks
Tue Jan 08, 2019 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Possible To Add Video In This Manner?
Replies: 4
Views: 328

Re: Possible To Add Video In This Manner?

--- I am playing around with renpy.movie_cutscene, but no go... so far. Have you entered $ renpy.movie_cutscene("video/park.webm") in your script at the point where you want to play the video? If so what happens when you try to launch the game? Do you get any error message? I have no prob...
by bDunks
Tue Jan 08, 2019 4:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Possible To Add Video In This Manner?
Replies: 4
Views: 328

Re: Possible To Add Video In This Manner?

You could start looking at this page https://www.renpy.org/doc/html/movie.html?highlight=cutscene If you use the image model you can change size and other stuff that you can do with an image. That's what I am looking at now, but not seeing how to use what I have posted. I am playing around with ren...
by bDunks
Tue Jan 08, 2019 3:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Possible To Add Video In This Manner?
Replies: 4
Views: 328

Possible To Add Video In This Manner?

Hello! I am new here, so I hope I am posting in the correct place. :) I saw this code for audio & would like to know if there is similar code to add video? init python: renpy.music.register_channel("sound", mixer="sound", loop=True, file_prefix="sound/", file_suffix...