Nikolai Rodionov b214f8d278 Add a first-view controller and a bunch of things
1. Replace 4k models with low-poly once
2. Use bare mixamo for testing
3. Add a basic menu
4. Add a map with collisions and spawn areas
2025-01-20 22:33:30 +01:00

32 lines
780 B
Plaintext

[gd_scene load_steps=2 format=3 uid="uid://da7ymbxyg7miy"]
[ext_resource type="Script" path="res://scenes/utils/menu.gd" id="1_5mxqd"]
[node name="Menu" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_5mxqd")
[node name="Host" type="Button" parent="."]
layout_mode = 0
offset_left = 113.0
offset_top = 66.0
offset_right = 223.0
offset_bottom = 141.0
text = "Host"
[node name="Join" type="Button" parent="."]
layout_mode = 0
offset_left = 115.0
offset_top = 148.0
offset_right = 224.0
offset_bottom = 220.0
text = "Join"
[connection signal="pressed" from="Host" to="." method="_on_host_pressed"]
[connection signal="pressed" from="Join" to="." method="_on_join_pressed"]