main.tscn 922 B

12345678910111213141516171819202122232425262728293031
  1. [gd_scene load_steps=4 format=2]
  2. [ext_resource path="res://minimal.tscn" type="PackedScene" id=1]
  3. [ext_resource path="res://main.gd" type="Script" id=2]
  4. [ext_resource path="res://link_button.gd" type="Script" 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. anchor_right = 1.0
  10. anchor_bottom = 1.0
  11. __meta__ = {
  12. "_edit_use_anchors_": true
  13. }
  14. [node name="LinkButton" type="LinkButton" parent="CenterContainer"]
  15. margin_left = 239.0
  16. margin_top = 293.0
  17. margin_right = 785.0
  18. margin_bottom = 307.0
  19. text = "Make sure to download the GDNative WebRTC Plugin and place it in the project folder"
  20. script = ExtResource( 3 )
  21. __meta__ = {
  22. "_edit_use_anchors_": false
  23. }
  24. [connection signal="pressed" from="CenterContainer/LinkButton" to="CenterContainer/LinkButton" method="_on_LinkButton_pressed"]