1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- [gd_scene load_steps=3 format=3 uid="uid://clibpgandrw2t"]
- [ext_resource type="Script" path="res://UI/InfoBox.gd" id="1_fcjue"]
- [sub_resource type="StyleBoxLine" id="StyleBoxLine_67cy6"]
- color = Color(1, 1, 1, 1)
- thickness = 2
- [node name="InfoBox" type="Control"]
- layout_mode = 3
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- script = ExtResource("1_fcjue")
- [node name="MarginContainer" type="MarginContainer" parent="."]
- layout_mode = 1
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- theme_override_constants/margin_left = 120
- theme_override_constants/margin_top = 80
- theme_override_constants/margin_right = 120
- theme_override_constants/margin_bottom = 80
- [node name="ColorRect" type="ColorRect" parent="MarginContainer"]
- layout_mode = 2
- color = Color(0.313726, 0.447059, 0.678431, 0.709804)
- [node name="MarginContainer" type="MarginContainer" parent="MarginContainer"]
- layout_mode = 2
- theme_override_constants/margin_left = 30
- theme_override_constants/margin_top = 30
- theme_override_constants/margin_right = 30
- theme_override_constants/margin_bottom = 30
- [node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/MarginContainer"]
- layout_mode = 2
- theme_override_constants/separation = 10
- [node name="InfoTitle" type="Label" parent="MarginContainer/MarginContainer/VBoxContainer"]
- layout_mode = 2
- theme_override_font_sizes/font_size = 16
- text = "Title"
- [node name="HSeparator" type="HSeparator" parent="MarginContainer/MarginContainer/VBoxContainer"]
- layout_mode = 2
- theme_override_styles/separator = SubResource("StyleBoxLine_67cy6")
- [node name="InfoText" type="Label" parent="MarginContainer/MarginContainer/VBoxContainer"]
- custom_minimum_size = Vector2(99, 800)
- layout_direction = 1
- layout_mode = 2
- text = "This is just stupid placeholder text!
- This is just stupid placeholder text!
- This is just stupid placeholder text!
- "
|