2021-01-24 01:15:52 +10:30
|
|
|
[gd_scene load_steps=8 format=2]
|
|
|
|
|
|
|
|
[ext_resource path="res://assets/NotoSans-Regular.ttf" type="DynamicFontData" id=1]
|
|
|
|
[ext_resource path="res://scripts/OptionPanel.gd" type="Script" id=2]
|
|
|
|
|
2021-01-24 14:33:02 +10:30
|
|
|
[sub_resource type="DynamicFont" id=1]
|
2021-01-24 01:15:52 +10:30
|
|
|
outline_size = 1
|
|
|
|
outline_color = Color( 0, 0, 0, 1 )
|
|
|
|
font_data = ExtResource( 1 )
|
|
|
|
|
2021-01-24 14:33:02 +10:30
|
|
|
[sub_resource type="Theme" id=2]
|
|
|
|
default_font = SubResource( 1 )
|
2021-01-24 01:15:52 +10:30
|
|
|
|
2021-01-24 14:33:02 +10:30
|
|
|
[sub_resource type="DynamicFont" id=3]
|
2021-01-24 01:15:52 +10:30
|
|
|
size = 24
|
|
|
|
outline_size = 1
|
|
|
|
outline_color = Color( 0, 0, 0, 1 )
|
|
|
|
font_data = ExtResource( 1 )
|
|
|
|
|
2021-01-24 14:33:02 +10:30
|
|
|
[sub_resource type="GDScript" id=4]
|
2021-01-24 01:15:52 +10:30
|
|
|
script/source = "extends Label
|
|
|
|
|
|
|
|
var fps: float = 0.0
|
|
|
|
func _draw():
|
2021-01-24 15:30:20 +10:30
|
|
|
set_text('FPS: %.0f' % fps)
|
2021-01-24 01:15:52 +10:30
|
|
|
|
|
|
|
func _process(delta):
|
|
|
|
fps = Engine.get_frames_per_second()
|
|
|
|
update()
|
|
|
|
"
|
|
|
|
|
2021-01-24 14:33:02 +10:30
|
|
|
[sub_resource type="GDScript" id=5]
|
2021-01-24 01:15:52 +10:30
|
|
|
script/source = "extends Label
|
|
|
|
|
|
|
|
var audio_latency: float = 0.0
|
|
|
|
func _draw():
|
2021-01-24 15:30:20 +10:30
|
|
|
set_text('Audio Latency: %.2fms' % (audio_latency*1000))
|
2021-01-24 01:15:52 +10:30
|
|
|
|
|
|
|
var last_latency_check := 0.0
|
2021-01-24 15:30:20 +10:30
|
|
|
export var poll_seconds := 5.0
|
2021-01-24 01:15:52 +10:30
|
|
|
func _process(delta):
|
|
|
|
last_latency_check += delta
|
2021-01-24 15:30:20 +10:30
|
|
|
if last_latency_check > poll_seconds:
|
2021-01-24 01:15:52 +10:30
|
|
|
last_latency_check = 0.0
|
|
|
|
audio_latency = AudioServer.get_output_latency() # Note that on official godot builds this will only work ONCE for PulseAudio
|
|
|
|
update()
|
|
|
|
"
|
|
|
|
|
|
|
|
[node name="OptionPanel" type="VBoxContainer"]
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_left = 2.0
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_right = 269.0
|
|
|
|
margin_bottom = 234.0
|
|
|
|
size_flags_horizontal = 3
|
|
|
|
size_flags_vertical = 3
|
2021-01-24 14:33:02 +10:30
|
|
|
theme = SubResource( 2 )
|
2021-01-24 01:15:52 +10:30
|
|
|
script = ExtResource( 2 )
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="lbl_fps" type="Label" parent="."]
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_right = 267.0
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_bottom = 34.0
|
2021-01-24 14:33:02 +10:30
|
|
|
custom_fonts/font = SubResource( 3 )
|
2021-01-24 01:15:52 +10:30
|
|
|
text = "FPS: "
|
2021-01-24 14:33:02 +10:30
|
|
|
script = SubResource( 4 )
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="PanelContainer" type="PanelContainer" parent="."]
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_top = 38.0
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_right = 267.0
|
|
|
|
margin_bottom = 374.0
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"]
|
|
|
|
margin_left = 7.0
|
|
|
|
margin_top = 7.0
|
|
|
|
margin_right = 260.0
|
|
|
|
margin_bottom = 329.0
|
2021-01-24 01:15:52 +10:30
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="cb_qsettings" type="CheckBox" parent="PanelContainer/VBoxContainer"]
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 31.0
|
2021-01-24 01:15:52 +10:30
|
|
|
pressed = true
|
2021-01-24 15:30:20 +10:30
|
|
|
text = "Quick Settings"
|
|
|
|
|
|
|
|
[node name="vbox_qsettings" type="VBoxContainer" parent="PanelContainer/VBoxContainer"]
|
|
|
|
margin_top = 35.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 279.0
|
|
|
|
|
|
|
|
[node name="hbox_language" type="HBoxContainer" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 29.0
|
|
|
|
custom_constants/separation = 12
|
|
|
|
|
|
|
|
[node name="lbl_language" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings/hbox_language"]
|
|
|
|
margin_top = 3.0
|
|
|
|
margin_right = 75.0
|
|
|
|
margin_bottom = 26.0
|
|
|
|
text = "Language"
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="btn_language" type="OptionButton" parent="PanelContainer/VBoxContainer/vbox_qsettings/hbox_language"]
|
|
|
|
margin_left = 87.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 29.0
|
|
|
|
size_flags_horizontal = 3
|
|
|
|
text = "Native"
|
|
|
|
align = 1
|
|
|
|
items = [ "Native", null, false, 0, null, "Romaji", null, false, 1, null, "English", null, false, 2, null ]
|
|
|
|
selected = 0
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="lbl_volume" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 33.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 56.0
|
|
|
|
text = "Main Volume"
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="sl_volume" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 60.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 76.0
|
|
|
|
min_value = -40.0
|
|
|
|
max_value = 0.0
|
2021-01-24 01:15:52 +10:30
|
|
|
tick_count = 9
|
|
|
|
ticks_on_borders = true
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="lbl_vol_music" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 80.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 103.0
|
|
|
|
text = "Music Volume"
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="sl_vol_music" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 107.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 123.0
|
|
|
|
min_value = -20.0
|
|
|
|
max_value = 0.0
|
|
|
|
value = -6.0
|
|
|
|
tick_count = 5
|
|
|
|
ticks_on_borders = true
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="lbl_vol_sfx" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 127.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 150.0
|
|
|
|
text = "Feedback Volume"
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="sl_vol_sfx" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 154.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 170.0
|
|
|
|
min_value = -40.0
|
|
|
|
max_value = 0.0
|
2021-01-24 01:15:52 +10:30
|
|
|
tick_count = 9
|
|
|
|
ticks_on_borders = true
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="lbl_screenfilter" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 174.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 197.0
|
|
|
|
text = "Background Video Darkening"
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="sl_screenfilter" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 201.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 217.0
|
2021-01-24 01:15:52 +10:30
|
|
|
max_value = 1.0
|
2021-01-24 15:30:20 +10:30
|
|
|
step = 0.02
|
2021-01-24 17:02:28 +10:30
|
|
|
value = 0.3
|
2021-01-24 15:30:20 +10:30
|
|
|
tick_count = 11
|
|
|
|
ticks_on_borders = true
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="lbl_audiolatency" type="Label" parent="PanelContainer/VBoxContainer/vbox_qsettings"]
|
|
|
|
margin_top = 221.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 244.0
|
|
|
|
text = "Audio Latency: "
|
|
|
|
script = SubResource( 5 )
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="HSeparator" type="HSeparator" parent="PanelContainer/VBoxContainer"]
|
|
|
|
margin_top = 283.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 287.0
|
|
|
|
|
|
|
|
[node name="cb_graphics" type="CheckBox" parent="PanelContainer/VBoxContainer"]
|
|
|
|
margin_top = 291.0
|
|
|
|
margin_right = 253.0
|
|
|
|
margin_bottom = 322.0
|
|
|
|
text = "Graphics"
|
|
|
|
|
|
|
|
[node name="vbox_graphics" type="VBoxContainer" parent="PanelContainer/VBoxContainer"]
|
|
|
|
visible = false
|
|
|
|
margin_top = 326.0
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_right = 281.0
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_bottom = 433.0
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="hbox" type="HBoxContainer" parent="PanelContainer/VBoxContainer/vbox_graphics"]
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_right = 281.0
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_bottom = 40.0
|
|
|
|
|
|
|
|
[node name="btn_vsync" type="CheckButton" parent="PanelContainer/VBoxContainer/vbox_graphics/hbox"]
|
|
|
|
margin_right = 124.0
|
|
|
|
margin_bottom = 40.0
|
|
|
|
pressed = true
|
|
|
|
text = "Vsync"
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="btn_wakelock" type="CheckButton" parent="PanelContainer/VBoxContainer/vbox_graphics/hbox"]
|
|
|
|
margin_left = 128.0
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_right = 281.0
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_bottom = 40.0
|
|
|
|
pressed = true
|
|
|
|
text = "Wakelock"
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2021-01-24 01:15:52 +10:30
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="lbl_subsampling" type="Label" parent="PanelContainer/VBoxContainer/vbox_graphics"]
|
|
|
|
margin_top = 44.0
|
|
|
|
margin_right = 281.0
|
|
|
|
margin_bottom = 67.0
|
|
|
|
size_flags_vertical = 0
|
|
|
|
text = "Subsampling (X, Y)"
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[node name="sl_SSX" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_graphics"]
|
|
|
|
margin_top = 71.0
|
2021-01-24 01:15:52 +10:30
|
|
|
margin_right = 281.0
|
2021-01-24 15:30:20 +10:30
|
|
|
margin_bottom = 87.0
|
|
|
|
size_flags_vertical = 1
|
|
|
|
min_value = 0.1
|
|
|
|
max_value = 1.0
|
|
|
|
step = 0.05
|
|
|
|
value = 1.0
|
|
|
|
tick_count = 9
|
|
|
|
ticks_on_borders = true
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
|
|
|
[node name="sl_SSY" type="HSlider" parent="PanelContainer/VBoxContainer/vbox_graphics"]
|
|
|
|
margin_top = 91.0
|
|
|
|
margin_right = 281.0
|
|
|
|
margin_bottom = 107.0
|
|
|
|
grow_horizontal = 2
|
|
|
|
grow_vertical = 2
|
|
|
|
size_flags_vertical = 1
|
|
|
|
min_value = 0.1
|
|
|
|
max_value = 1.0
|
|
|
|
step = 0.05
|
|
|
|
value = 1.0
|
|
|
|
tick_count = 9
|
|
|
|
ticks_on_borders = true
|
2021-01-24 01:15:52 +10:30
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2021-01-24 14:33:02 +10:30
|
|
|
|
2021-01-24 15:30:20 +10:30
|
|
|
[connection signal="toggled" from="PanelContainer/VBoxContainer/cb_qsettings" to="PanelContainer/VBoxContainer/vbox_qsettings" method="set_visible"]
|
|
|
|
[connection signal="item_selected" from="PanelContainer/VBoxContainer/vbox_qsettings/hbox_language/btn_language" to="." method="_on_btn_language_item_selected"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_qsettings/sl_volume" to="." method="_on_sl_volume_value_changed"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_qsettings/sl_vol_music" to="." method="_on_sl_vol_music_value_changed"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_qsettings/sl_vol_sfx" to="." method="_on_sl_vol_sfx_value_changed"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_qsettings/sl_screenfilter" to="." method="_on_sl_screenfilter_value_changed"]
|
|
|
|
[connection signal="toggled" from="PanelContainer/VBoxContainer/cb_graphics" to="PanelContainer/VBoxContainer/vbox_graphics" method="set_visible"]
|
|
|
|
[connection signal="toggled" from="PanelContainer/VBoxContainer/vbox_graphics/hbox/btn_vsync" to="." method="_on_btn_vsync_toggled"]
|
|
|
|
[connection signal="toggled" from="PanelContainer/VBoxContainer/vbox_graphics/hbox/btn_wakelock" to="." method="_on_btn_wakelock_toggled"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_graphics/sl_SSX" to="." method="_on_sl_SSX_value_changed"]
|
|
|
|
[connection signal="value_changed" from="PanelContainer/VBoxContainer/vbox_graphics/sl_SSY" to="." method="_on_sl_SSY_value_changed"]
|