Files
VirtualChemistry.Demo/Scenes/StringLoader.tscn
2024-07-10 16:16:34 +01:00

45 lines
1.1 KiB
Plaintext

[gd_scene load_steps=2 format=3 uid="uid://cubdalatqln4x"]
[ext_resource type="Script" path="res://Scenes/StringLoader.cs" id="1_qoxxp"]
[node name="StringLoader" type="Window"]
position = Vector2i(0, 36)
size = Vector2i(500, 250)
script = ExtResource("1_qoxxp")
[node name="V1" type="VBoxContainer" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -225.0
offset_top = -37.5
offset_right = 225.0
offset_bottom = 37.5
grow_horizontal = 2
grow_vertical = 2
[node name="Label" type="Label" parent="V1"]
layout_mode = 2
text = "Expression:"
[node name="Input" type="TextEdit" parent="V1"]
custom_minimum_size = Vector2(450, 40)
layout_mode = 2
[node name="HBoxContainer" type="HBoxContainer" parent="V1"]
layout_mode = 2
alignment = 1
[node name="Load" type="Button" parent="V1/HBoxContainer"]
layout_mode = 2
text = "Load"
[node name="Cancel" type="Button" parent="V1/HBoxContainer"]
layout_mode = 2
text = "Cancel"
[connection signal="pressed" from="V1/HBoxContainer/Load" to="." method="Load"]
[connection signal="pressed" from="V1/HBoxContainer/Cancel" to="." method="Cancel"]