mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
42 lines
1013 B
GDScript3
42 lines
1013 B
GDScript3
|
extends Theme
|
||
|
|
||
|
export(float) var content_margin_vertical_normal : float = 6
|
||
|
export(float) var content_margin_vertical_touch : float = 10
|
||
|
|
||
|
func _init():
|
||
|
Settings.connect("setting_changed", self, "setting_changed")
|
||
|
Settings.connect("settings_loaded", self, "settings_loaded")
|
||
|
|
||
|
if Settings.loaded:
|
||
|
adapt(Settings.get_value("ui", "touchscreen_mode"))
|
||
|
|
||
|
|
||
|
func setting_changed(section, key, value):
|
||
|
if section == "ui" and key == "touchscreen_mode":
|
||
|
adapt(value)
|
||
|
|
||
|
func settings_loaded():
|
||
|
adapt(Settings.get_value("ui", "touchscreen_mode"))
|
||
|
|
||
|
func adapt(touchscreen_mode : bool) -> void:
|
||
|
var content_martgin_vert : float = 0
|
||
|
|
||
|
if touchscreen_mode:
|
||
|
content_martgin_vert = content_margin_vertical_touch
|
||
|
else:
|
||
|
content_martgin_vert = content_margin_vertical_normal
|
||
|
|
||
|
for sbs in get_stylebox_list("Button"):
|
||
|
var sb : StyleBoxTexture = get_stylebox(sbs, "Button") as StyleBoxTexture
|
||
|
|
||
|
if sb == null:
|
||
|
continue
|
||
|
|
||
|
sb.margin_top = content_martgin_vert
|
||
|
sb.margin_bottom = content_martgin_vert
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|