39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://user_interface/utility_controls/line_separator.gd" type="Script" id=1]
|
|
[ext_resource path="res://user_interface/utility_controls/separation_line.gd" type="Script" id=2]
|
|
[ext_resource path="res://user_interface/fonts/separator_font.tres" type="DynamicFont" id=3]
|
|
|
|
[node name="LineSeparator" type="HBoxContainer"]
|
|
modulate = Color( 1, 1, 1, 0.501961 )
|
|
anchor_right = 1.0
|
|
margin_bottom = 14.0
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="LeftLine" type="Control" parent="."]
|
|
margin_right = 64.0
|
|
margin_bottom = 15.0
|
|
rect_min_size = Vector2( 64, 0 )
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="SeparationTag" type="Label" parent="."]
|
|
margin_left = 68.0
|
|
margin_right = 182.0
|
|
margin_bottom = 15.0
|
|
size_flags_horizontal = 4
|
|
custom_fonts/font = ExtResource( 3 )
|
|
text = "[Separation Tag]"
|
|
|
|
[node name="RightLine" type="Control" parent="."]
|
|
margin_left = 186.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 15.0
|
|
size_flags_horizontal = 3
|
|
script = ExtResource( 2 )
|
|
|
|
[connection signal="resized" from="LeftLine" to="LeftLine" method="_on_resized"]
|
|
[connection signal="resized" from="RightLine" to="RightLine" method="_on_resized"]
|