some notes for me + debug function for printing settings
This commit is contained in:
parent
8be2560943
commit
0d64f4adf6
|
|
@ -1,11 +1,11 @@
|
||||||
extends Node
|
extends Node
|
||||||
|
# For Startup Scene:
|
||||||
var screen_reader:bool = false
|
var screen_reader:bool = false # Screenreader
|
||||||
var disable_rendering: bool = false
|
var disable_rendering: bool = false # show nav button
|
||||||
var simplified_navigation:bool = false
|
var simplified_navigation:bool = false # simplified controls
|
||||||
var show_navigation_buttons: bool = false
|
var show_navigation_buttons: bool = false # show nav ui
|
||||||
var enable_subtitles: bool = false
|
var enable_subtitles: bool = false # ItemList2
|
||||||
var enable_closed_caption: bool = false
|
var enable_closed_caption: bool = false # ItemList2
|
||||||
var reduce_motion: bool = false
|
var reduce_motion: bool = false
|
||||||
var streaming_content_notes: bool = false
|
var streaming_content_notes: bool = false
|
||||||
var show_content_notes: bool = false
|
var show_content_notes: bool = false
|
||||||
|
|
@ -87,3 +87,17 @@ func transition_stage_to(thief: Object):
|
||||||
|
|
||||||
func queue_for_stage(target: Object, index: int = 1):
|
func queue_for_stage(target: Object, index: int = 1):
|
||||||
stage_list.insert(index, target)
|
stage_list.insert(index, target)
|
||||||
|
|
||||||
|
func print_settings():
|
||||||
|
print_debug("Screenreader: ", screen_reader, " / ",
|
||||||
|
"Disable rendering: ", disable_rendering, " / ",
|
||||||
|
"Simplified controls: ", simplified_navigation, " / ",
|
||||||
|
"Show navigation buttons: ", show_navigation_buttons, " / ",
|
||||||
|
"Enable subtitles: ", enable_subtitles, " / ",
|
||||||
|
"Enable CC: ", enable_closed_caption, " / ")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue