Files
PRD_TU_MP550/scripts/switch.gd
2024-12-18 14:01:19 +03:00

12 lines
235 B
GDScript

extends PanelContainer
func _ready() -> void:
var style = get('theme_override_styles/panel')
style.bg_color = Color(0, 0, 0, 0.5)
set('theme_override_styles/panel', style)
func _process(_delta: float) -> void:
pass