Search found 5 matches

by Xevvy
Wed May 13, 2020 11:48 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fade music that is playing when a save is loaded?
Replies: 12
Views: 604

Re: How to fade music that is playing when a save is loaded?

Remember that it's happening with music played in scripts as well. So unless I defined every single piece of music as a different channel, it wouldn't be a solution. What a pain :( Thank you for trying, anyway. I'll revert back for now and I think I'll just have to deal with this behavior unless som...
by Xevvy
Wed May 13, 2020 10:16 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fade music that is playing when a save is loaded?
Replies: 12
Views: 604

Re: How to fade music that is playing when a save is loaded?

action [Function(renpy.music.stop, "music", 2.0), Function(renpy.pause, 1.0, hard=True), FileAction(i)] Is this the correct way and syntax to define this? Because as is it produces errors on both the load and save screens, as well as the continue button on the main menu. Exception: Cannot...
by Xevvy
Wed May 13, 2020 10:06 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fade music that is playing when a save is loaded?
Replies: 12
Views: 604

Re: How to fade music that is playing when a save is loaded?

I've added this to what I believe is the action statement responsible for the load operation, however there's no difference in behavior. I've also tried adding a pause statement to this (Function(renpy.pause, 1.0, hard=True)]), hopefully that's correct syntax, but neither seem to have any effect. gr...
by Xevvy
Wed May 13, 2020 9:34 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fade music that is playing when a save is loaded?
Replies: 12
Views: 604

Re: How to fade music that is playing when a save is loaded?

What is the correct syntax for stopping music with a fadeout as a button action? I know you can can use Stop('music'), but I can't figure out how to pass it a fadeout argument.
by Xevvy
Wed May 13, 2020 9:04 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fade music that is playing when a save is loaded?
Replies: 12
Views: 604

How to fade music that is playing when a save is loaded?

Hi all, I've asked a couple of times on the discord and have yet to find a solution, so I'm posting here in the hope someone will know how to do what I'm trying to do. The Issue When loading a save game file, whatever music is playing, be it the main menu music or music that is playing as part of a ...