12345678910111213141516171819202122232425262728 |
- [gd_scene load_steps=4 format=3 uid="uid://bvmm5mgb38ysa"]
- [ext_resource type="PackedScene" path="res://minimal.tscn" id="1"]
- [ext_resource type="Script" path="res://main.gd" id="2"]
- [ext_resource type="Script" path="res://link_button.gd" id="3"]
- [node name="Main" type="Node"]
- script = ExtResource("2")
- [node name="Minimal" parent="." instance=ExtResource("1")]
- [node name="CenterContainer" type="CenterContainer" parent="."]
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- [node name="LinkButton" type="LinkButton" parent="CenterContainer"]
- layout_mode = 2
- offset_left = 245.0
- offset_top = 312.0
- offset_right = 906.0
- offset_bottom = 335.0
- text = "Make sure to download the GDNative WebRTC Plugin and place it in the project folder"
- script = ExtResource("3")
- [connection signal="pressed" from="CenterContainer/LinkButton" to="CenterContainer/LinkButton" method="_on_LinkButton_pressed"]
|