50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
|
[gd_scene load_steps=3 format=2]
|
||
|
|
||
|
[ext_resource path="res://loadscreen.png" type="Texture" id=1]
|
||
|
[ext_resource path="res://startup.gd" type="Script" id=2]
|
||
|
|
||
|
[node name="Control" type="Control"]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
script = ExtResource( 2 )
|
||
|
__meta__ = {
|
||
|
"_edit_use_anchors_": true
|
||
|
}
|
||
|
|
||
|
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
margin_bottom = 25.0
|
||
|
alignment = 1
|
||
|
__meta__ = {
|
||
|
"_edit_use_anchors_": false
|
||
|
}
|
||
|
|
||
|
[node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer"]
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 625.0
|
||
|
alignment = 1
|
||
|
|
||
|
[node name="TextureRect" type="TextureRect" parent="HBoxContainer/VBoxContainer"]
|
||
|
margin_top = 12.0
|
||
|
margin_right = 1024.0
|
||
|
margin_bottom = 612.0
|
||
|
texture = ExtResource( 1 )
|
||
|
|
||
|
[node name="SceneChangeTimer" type="Timer" parent="."]
|
||
|
wait_time = 5.0
|
||
|
one_shot = true
|
||
|
|
||
|
[node name="StartDlServerTimer" type="Timer" parent="."]
|
||
|
one_shot = true
|
||
|
autostart = true
|
||
|
|
||
|
[node name="ValidateServerRunningTimer" type="Timer" parent="."]
|
||
|
one_shot = true
|
||
|
|
||
|
[node name="HTTPRequest" type="HTTPRequest" parent="."]
|
||
|
[connection signal="timeout" from="SceneChangeTimer" to="." method="_on_Timer_timeout"]
|
||
|
[connection signal="timeout" from="StartDlServerTimer" to="." method="_on_Timer2_timeout"]
|
||
|
[connection signal="timeout" from="ValidateServerRunningTimer" to="." method="_on_ValidateServerRunningTimer_timeout"]
|
||
|
[connection signal="request_completed" from="HTTPRequest" to="." method="_on_HTTPRequest_request_completed"]
|