This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Game/Main.tscn

94 lines
2.6 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=5 format=2]
2021-05-14 21:31:39 +02:00
[ext_resource path="res://Map.tscn" type="PackedScene" id=1]
[ext_resource path="res://Assets/UI/GUI.tscn" type="PackedScene" id=2]
2021-06-02 23:32:07 +02:00
[ext_resource path="res://Main.gd" type="Script" id=3]
[ext_resource path="res://Assets/HUD/HUD.tscn" type="PackedScene" id=4]
2021-05-14 21:31:39 +02:00
2021-06-02 23:32:07 +02:00
[node name="Main" type="Node"]
script = ExtResource( 3 )
2021-05-14 21:31:39 +02:00
[node name="HUD" parent="." instance=ExtResource( 4 )]
2021-05-14 21:31:39 +02:00
[node name="AnimationPlayer" parent="HUD/Crosshair" index="1"]
blend_times = []
[node name="ChatHistory" parent="HUD/Chat/VBoxContainer" index="0"]
custom_effects = []
structured_text_bidi_override_options = []
[node name="Label" parent="HUD/Chat/VBoxContainer/Typing" index="0"]
structured_text_bidi_override_options = []
[node name="Editor" parent="HUD/Chat/VBoxContainer/Typing" index="1"]
structured_text_bidi_override_options = []
[node name="GUI" parent="." instance=ExtResource( 2 )]
2021-06-09 19:41:52 +02:00
[node name="Players" type="Node3D" parent="."]
script = null
[node name="Map" parent="." instance=ExtResource( 1 )]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1)
[node name="NetworkTesting" type="VBoxContainer" parent="."]
anchor_left = 1.0
anchor_right = 1.0
offset_left = -166.0
offset_bottom = 159.0
script = null
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Host" type="Button" parent="NetworkTesting"]
offset_right = 166.0
offset_bottom = 29.0
text = "Host"
script = null
[node name="Connect" type="Button" parent="NetworkTesting"]
offset_top = 33.0
offset_right = 166.0
offset_bottom = 62.0
text = "Connect"
script = null
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextEdit" type="LineEdit" parent="NetworkTesting"]
offset_top = 66.0
offset_right = 166.0
offset_bottom = 99.0
rect_min_size = Vector2(100, 30)
text = "name"
structured_text_bidi_override_options = []
script = null
[node name="ColorPickerButton" type="ColorPickerButton" parent="NetworkTesting"]
offset_top = 103.0
offset_right = 166.0
offset_bottom = 132.0
edit_alpha = false
script = null
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
offset_right = 505.0
offset_bottom = 238.0
structured_text_bidi_override_options = []
script = null
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="NetworkTesting/Host" to="." method="_on_Host_pressed"]
[connection signal="pressed" from="NetworkTesting/Connect" to="." method="_on_Connect_pressed"]
[connection signal="text_submitted" from="NetworkTesting/TextEdit" to="." method="_on_TextEdit_text_submitted"]
[connection signal="color_changed" from="NetworkTesting/ColorPickerButton" to="." method="_on_ColorPickerButton_color_changed"]
[editable path="HUD"]