main.tscn 943 B

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