mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-06 14:59:44 +01:00
31 lines
922 B
Plaintext
31 lines
922 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://minimal.tscn" type="PackedScene" id=1]
|
|
[ext_resource path="res://main.gd" type="Script" id=2]
|
|
[ext_resource path="res://link_button.gd" type="Script" id=3]
|
|
|
|
[node name="Main" type="Node"]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="Minimal" parent="." instance=ExtResource( 1 )]
|
|
|
|
[node name="CenterContainer" type="CenterContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": true
|
|
}
|
|
|
|
[node name="LinkButton" type="LinkButton" parent="CenterContainer"]
|
|
margin_left = 239.0
|
|
margin_top = 293.0
|
|
margin_right = 785.0
|
|
margin_bottom = 307.0
|
|
text = "Make sure to download the GDNative WebRTC Plugin and place it in the project folder"
|
|
script = ExtResource( 3 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[connection signal="pressed" from="CenterContainer/LinkButton" to="CenterContainer/LinkButton" method="_on_LinkButton_pressed"]
|