Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+2)

You can actually set the default volume in the code to make it easier. I found some code here; it's old but worked when I tested it. Paste the following at the start of the script.rpy file (make sure to preserve indents):

label splashscreen:
    python:
        if not persistent.set_volumes:
            persistent.set_volumes = True
        
            _preferences.volumes['music'] *= .45
            _preferences.volumes['sfx'] *= .67
return
(1 edit)

Ah thank you!!! I'll consider this in an update with some testing~ I'm gonna wait a bit though to hear if there's any issues with the game, so I can compile all needed fixes in one go for an update ^^