Ren'Py M key?

coffeeaddicted

Well-Known Member
Apr 13, 2021
1,765
1,432
Hate to open another post but there supposed to be a "m" key for sound control for the player so he/she can turn sound on and off by pressing that key.
That doesn't seem to work.
Does this key need to be activated somewhere or was the removed?
I don't recall where i read it, perhaps on Lemmasoft and it maybe be an real old post. Though it would be nice for people that don't want to listen to music.

Thanks
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,041
3,140
there is no hotkeys for it here is a list hotkeys


you can create one for it
 
  • Like
Reactions: coffeeaddicted

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,369
15,284
That doesn't seem to work.
Because it have been removed a looooooong time ago (with the 6.17.0, so in 2014). The key binding is still present, but linked to nothing.

This said, the preference screen is two click away from the player ; one if you keep the default quick menu. What mean that muting the sound can be done in three click maximum.
I guess it's the reason why it have been removed.
 
  • Like
Reactions: coffeeaddicted

coffeeaddicted

Well-Known Member
Apr 13, 2021
1,765
1,432
Because it have been removed a looooooong time ago (with the 6.17.0, so in 2014). The key binding is still present, but linked to nothing.

This said, the preference screen is two click away from the player ; one if you keep the default quick menu. What mean that muting the sound can be done in three click maximum.
I guess it's the reason why it have been removed.
Well, true. I just personally like the keys.
And i think yes, it's old. Well, that answer the question.

I have to say that the strangest thing just happened. In my game i can't open the menu anymore. I have to restart my computer just to test it.
Forgot a return

Anyway, thanks for answering my question.
 
Last edited:

crabsinthekitchen

Well-Known Member
Apr 28, 2020
1,550
8,802
something like this should work

Code:
init python:
    config.overlay_screens.append("keyboard_shortcuts")

screen keyboard_shortcuts:
    key "m" Preference("all mute", "toggle")