Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
derkork committed Nov 8, 2023
1 parent 753094b commit 1252fc8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions godot_resource_groups_examples/example_csharp/example.tscn
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[gd_scene load_steps=2 format=3 uid="uid://cit8defjrq42r"]

[ext_resource type="Script" path="res://godot_resource_groups_examples/example_csharp/Example.cs" id="1_pos5a"]

[node name="ExampleScene" 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_pos5a")

[node name="PanelContainer" type="PanelContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2

[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"]
layout_mode = 2

[node name="Label" type="Label" parent="PanelContainer/VBoxContainer"]
layout_mode = 2
text = "Resource Group Example"
horizontal_alignment = 1

[node name="OptionButton" type="OptionButton" parent="PanelContainer/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2

[node name="TextureRect" type="TextureRect" parent="PanelContainer/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
size_flags_vertical = 3
expand_mode = 3
stretch_mode = 5

[connection signal="item_selected" from="PanelContainer/VBoxContainer/OptionButton" to="." method="OnOptionButtonItemSelected"]

0 comments on commit 1252fc8

Please sign in to comment.