blob: 790e892289b5dc119b8bf627f0f870e6f5d627a2 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://addons/rmsmartshape/assets/GUI_Theme.tres" type="Theme" id=1]
[ext_resource path="res://addons/rmsmartshape/scenes/GUI_Edge_InfoPanel.gd" type="Script" id=2]
[node name="GUI_Edge_InfoPanel" type="PanelContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -918.0
margin_bottom = -486.0
mouse_filter = 2
size_flags_horizontal = 4
size_flags_vertical = 4
theme = ExtResource( 1 )
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
p_lbl_idx = NodePath("Container/Properties/IDX")
p_btn_material_override = NodePath("Container/Functions/MaterialOverride")
p_ctr_override = NodePath("Container/Override")
p_chk_render = NodePath("Container/Override/Render")
p_chk_weld = NodePath("Container/Override/Weld")
p_int_index = NodePath("Container/Override/Z_Index/Z_index")
p_btn_edge_material = NodePath("Container/Override/SetMaterial")
p_btn_clear_edge_material = NodePath("Container/Override/ClearMaterial")
p_lbl_edge_material = NodePath("Container/Override/lblMaterial")
[node name="Panel" type="Panel" parent="."]
margin_left = 3.0
margin_top = 3.0
margin_right = 133.0
margin_bottom = 219.0
mouse_filter = 2
[node name="Container" type="VBoxContainer" parent="."]
margin_left = 3.0
margin_top = 3.0
margin_right = 133.0
margin_bottom = 219.0
[node name="Properties" type="VBoxContainer" parent="Container"]
margin_right = 130.0
margin_bottom = 24.0
mouse_filter = 2
[node name="IDX" type="Label" parent="Container/Properties"]
margin_right = 130.0
margin_bottom = 24.0
text = "IDX: [1,2]"
[node name="Functions" type="VBoxContainer" parent="Container"]
margin_top = 28.0
margin_right = 130.0
margin_bottom = 48.0
mouse_filter = 2
[node name="Make Inner Curve" type="Button" parent="Container/Functions"]
visible = false
margin_right = 140.0
margin_bottom = 20.0
text = "Make Inner Curve"
[node name="Make Outer Curve" type="Button" parent="Container/Functions"]
visible = false
margin_top = 24.0
margin_right = 140.0
margin_bottom = 44.0
text = "Make Outer Curve"
[node name="MaterialOverride" type="Button" parent="Container/Functions"]
margin_right = 130.0
margin_bottom = 20.0
toggle_mode = true
text = "Material Override"
[node name="Override" type="VBoxContainer" parent="Container"]
margin_top = 52.0
margin_right = 130.0
margin_bottom = 160.0
[node name="HSeparator" type="HSeparator" parent="Container/Override"]
margin_right = 130.0
margin_bottom = 4.0
[node name="Render" type="CheckBox" parent="Container/Override"]
margin_top = 8.0
margin_right = 130.0
margin_bottom = 32.0
pressed = true
text = "Render"
[node name="Weld" type="CheckBox" parent="Container/Override"]
visible = false
margin_top = 36.0
margin_right = 130.0
margin_bottom = 60.0
pressed = true
text = "Weld"
[node name="Z_Index" type="HBoxContainer" parent="Container/Override"]
visible = false
margin_top = 64.0
margin_right = 130.0
margin_bottom = 88.0
[node name="lbl" type="Label" parent="Container/Override/Z_Index"]
margin_right = 20.0
margin_bottom = 24.0
text = "Z:"
[node name="Z_index" type="SpinBox" parent="Container/Override/Z_Index"]
margin_left = 24.0
margin_right = 98.0
margin_bottom = 24.0
min_value = -100.0
[node name="SetMaterial" type="Button" parent="Container/Override"]
margin_top = 36.0
margin_right = 130.0
margin_bottom = 56.0
text = "Set Material"
[node name="ClearMaterial" type="Button" parent="Container/Override"]
margin_top = 60.0
margin_right = 130.0
margin_bottom = 80.0
text = "Clear Material"
[node name="lblMaterial" type="Label" parent="Container/Override"]
margin_top = 84.0
margin_right = 130.0
margin_bottom = 108.0
text = "[No Material]"
|