blob: 63160942876885a63135dc7c5da9e6d217479805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
[gd_scene load_steps=8 format=3 uid="uid://dq61p3a8og2b6"]
[ext_resource type="Shader" path="res://menu/blur_mix.gdshader" id="1_qv8ew"]
[ext_resource type="Script" path="res://menu/blur_setup.gd" id="2_80a6b"]
[ext_resource type="FontFile" uid="uid://bk704sc5gkrb3" path="res://menu/theme/font-azaret-mono.woff2" id="3_dw20j"]
[sub_resource type="ShaderMaterial" id="ShaderMaterial_q3bbd"]
shader = ExtResource("1_qv8ew")
shader_parameter/blur_amount = 3.5
shader_parameter/mix_amount = 0.85
shader_parameter/mix_amount_no_blur = 0.85
shader_parameter/color_over = Color(1, 1, 1, 1)
shader_parameter/enable_blur = true
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_vq4dg"]
bg_color = Color(1, 1, 1, 0.878431)
corner_radius_top_left = 16
corner_radius_top_right = 16
corner_radius_bottom_right = 16
corner_radius_bottom_left = 16
[sub_resource type="FontVariation" id="FontVariation_qfltj"]
base_font = ExtResource("3_dw20j")
variation_embolden = 0.75
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_3rgop"]
content_margin_left = 32.0
content_margin_top = 8.0
content_margin_right = 32.0
content_margin_bottom = 8.0
[node name="ServerMessage" type="PanelContainer"]
material = SubResource("ShaderMaterial_q3bbd")
size_flags_horizontal = 4
size_flags_vertical = 0
mouse_filter = 2
theme_override_styles/panel = SubResource("StyleBoxFlat_vq4dg")
script = ExtResource("2_80a6b")
[node name="CenterContainer" type="CenterContainer" parent="."]
layout_mode = 2
mouse_filter = 2
[node name="Label" type="Label" parent="CenterContainer"]
layout_mode = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_fonts/font = SubResource("FontVariation_qfltj")
theme_override_styles/normal = SubResource("StyleBoxEmpty_3rgop")
text = "Server message"
|