Preferences Screen
Author: NingNing
Last update:2022-05-29
About customize settings screen (Preferences screen)
I have talked and made videos on this topic on my Blog so you can also check out the following links:
- Renpy GUI Tutorial #01 [Cover, Settings, About, Help]
- Ren'Py Tutorial [Part 7 #07] Complete GUI production from start to finish [Part 1]
- Ren'Py teaching [Part 3 #03] More in-depth Preference screen production teaching
Some common action
Display
Preference("display", "fullscreen")
Preference("display", "window")
Transitions
Preference("transitions", "all")
Preference("transitions", "none")
Skip
Preference("skip", "seen")
Preference("skip", "all")
Preference("after choices", "skip")
Preference("after choices", "stop")
Auto-forward
Preference("auto-forward", "enable")
Preference("auto-forward", "disable")
Preference("auto-forward after click", "enable")
Preference("auto-forward after click", "disable")
Sound / Voice Setting
Preference("wait for voice", "enable")
Preference("wait for voice", "disable")
Preference(“music mute”, “enable”)
Preference(“music mute”, “disable”)
Preference("sound mute”, “enable”)
Preference("sound mute”, “disable”)
Preference("voice mute”, “enable”)
Preference("voice mute”, “disable”)
Preference(“all mute”, “enable”)
Preference(“all mute”, “disable”)