183 lines
7.2 KiB
Plaintext
Raw Normal View History

2024-01-17 20:48:35 +00:00
[gd_scene load_steps=20 format=3 uid="uid://b40y7iuskv1ar"]
2024-01-15 16:08:26 +00:00
[ext_resource type="Script" path="res://world/Game.gd" id="1_xmqq4"]
2024-01-15 23:22:14 +00:00
[ext_resource type="Script" path="res://ui/FPSLabel.gd" id="3_k5d80"]
[ext_resource type="Script" path="res://ui/PingLabel.gd" id="4_1a3hc"]
[ext_resource type="Script" path="res://network/Network.gd" id="4_ao4cj"]
[ext_resource type="Script" path="res://network/Ping.gd" id="4_vx388"]
2024-01-16 22:01:16 +00:00
[ext_resource type="PackedScene" uid="uid://2lcnu3dy54lx" path="res://player/Player.tscn" id="5_6c2x8"]
2024-01-15 16:08:26 +00:00
[ext_resource type="Environment" uid="uid://dixa0yso2s1u3" path="res://world/Environment.tres" id="5_bll74"]
[ext_resource type="Script" path="res://world/Sun.gd" id="5_pf5uw"]
[ext_resource type="CameraAttributesPractical" uid="uid://b835orxyqq6w5" path="res://world/CameraAttributes.tres" id="6_8wfwf"]
2024-01-15 23:22:14 +00:00
[ext_resource type="Script" path="res://network/Login.gd" id="6_augbg"]
2024-01-16 22:01:16 +00:00
[ext_resource type="Script" path="res://ui/PositionLabel.gd" id="8_jc5xy"]
[ext_resource type="Script" path="res://world/Camera.gd" id="9_qfhy4"]
2024-01-17 20:48:35 +00:00
[ext_resource type="Material" uid="uid://ddy5gkw0k16dq" path="res://world/shader/OutlineMaterial.tres" id="10_dii8l"]
2024-01-16 22:01:16 +00:00
[ext_resource type="PackedScene" uid="uid://hnn0n1xc2qt7" path="res://world/Tree.blend" id="15_csh38"]
2024-01-17 20:48:35 +00:00
[ext_resource type="PackedScene" uid="uid://cb2t7bvvf3gwh" path="res://enemy/Slime.tscn" id="16_fuixr"]
2024-01-16 22:01:16 +00:00
[sub_resource type="QuadMesh" id="QuadMesh_7yiqd"]
2024-01-17 20:48:35 +00:00
material = ExtResource("10_dii8l")
2024-01-16 22:01:16 +00:00
flip_faces = true
size = Vector2(2, 2)
2024-01-15 16:08:26 +00:00
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r8n03"]
diffuse_mode = 3
albedo_color = Color(0.482353, 0.470588, 0.47451, 1)
[sub_resource type="BoxMesh" id="BoxMesh_0bujj"]
material = SubResource("StandardMaterial3D_r8n03")
size = Vector3(20, 0.5, 20)
2024-01-16 22:01:16 +00:00
[sub_resource type="BoxShape3D" id="BoxShape3D_58ws3"]
size = Vector3(20, 0.5, 20)
2024-01-15 16:08:26 +00:00
[node name="Game" type="Node"]
script = ExtResource("1_xmqq4")
2024-01-16 22:01:16 +00:00
[node name="Network" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("4_ao4cj")
2024-01-15 16:08:26 +00:00
2024-01-16 22:01:16 +00:00
[node name="Ping" type="Node" parent="Network"]
unique_name_in_owner = true
script = ExtResource("4_vx388")
2024-01-15 16:08:26 +00:00
2024-01-16 22:01:16 +00:00
[node name="Timer" type="Timer" parent="Network/Ping"]
autostart = true
2024-01-15 16:08:26 +00:00
2024-01-16 22:01:16 +00:00
[node name="Login" type="Node" parent="Network"]
script = ExtResource("6_augbg")
playerScene = ExtResource("5_6c2x8")
[node name="Timer" type="Timer" parent="Network/Login"]
wait_time = 10.0
autostart = true
2024-01-15 16:08:26 +00:00
2024-01-15 23:22:14 +00:00
[node name="UI" type="Control" parent="."]
layout_mode = 3
anchors_preset = 0
[node name="CanvasLayer" type="CanvasLayer" parent="UI"]
[node name="MarginContainer" type="MarginContainer" parent="UI/CanvasLayer"]
offset_right = 40.0
offset_bottom = 50.0
[node name="VBoxContainer" type="VBoxContainer" parent="UI/CanvasLayer/MarginContainer"]
layout_mode = 2
[node name="HBoxContainer" type="HBoxContainer" parent="UI/CanvasLayer/MarginContainer/VBoxContainer"]
layout_mode = 2
[node name="FPSLabel" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer"]
layout_mode = 2
text = "FPS:"
[node name="FPS" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer"]
layout_mode = 2
text = "0"
script = ExtResource("3_k5d80")
[node name="HBoxContainer2" type="HBoxContainer" parent="UI/CanvasLayer/MarginContainer/VBoxContainer"]
layout_mode = 2
[node name="PingLabel" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer2"]
layout_mode = 2
text = "Ping:"
[node name="Ping" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer2"]
layout_mode = 2
text = "0"
script = ExtResource("4_1a3hc")
2024-01-16 22:01:16 +00:00
[node name="HBoxContainer3" type="HBoxContainer" parent="UI/CanvasLayer/MarginContainer/VBoxContainer"]
layout_mode = 2
2024-01-15 23:22:14 +00:00
2024-01-16 22:01:16 +00:00
[node name="PositionLabel" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer3"]
layout_mode = 2
text = "Position:"
2024-01-15 23:22:14 +00:00
2024-01-16 22:01:16 +00:00
[node name="Position" type="Label" parent="UI/CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer3"]
layout_mode = 2
text = "0"
script = ExtResource("8_jc5xy")
2024-01-15 16:08:26 +00:00
[node name="SubViewportContainer" type="SubViewportContainer" parent="."]
texture_filter = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
stretch = true
stretch_shrink = 3
[node name="SubViewport" type="SubViewport" parent="SubViewportContainer"]
handle_input_locally = false
size = Vector2i(384, 216)
render_target_update_mode = 4
2024-01-17 20:48:35 +00:00
[node name="CameraPivot" type="Node3D" parent="SubViewportContainer/SubViewport"]
2024-01-16 22:01:16 +00:00
2024-01-17 20:48:35 +00:00
[node name="Camera" type="Camera3D" parent="SubViewportContainer/SubViewport/CameraPivot" node_paths=PackedStringArray("center")]
2024-01-16 22:01:16 +00:00
transform = Transform3D(0.707107, 0.408607, -0.577096, 0, 0.816138, 0.577858, 0.707107, -0.408607, 0.577096, -10, 10, 10)
2024-01-15 16:08:26 +00:00
projection = 1
current = true
fov = 90.0
2024-01-16 22:01:16 +00:00
size = 10.0
far = 100.0
script = ExtResource("9_qfhy4")
center = NodePath("..")
follow_speed = 5.0
2024-01-15 16:08:26 +00:00
2024-01-17 20:48:35 +00:00
[node name="PostProcessing" type="MeshInstance3D" parent="SubViewportContainer/SubViewport/CameraPivot/Camera"]
2024-01-15 16:08:26 +00:00
unique_name_in_owner = true
extra_cull_margin = 16384.0
mesh = SubResource("QuadMesh_7yiqd")
[node name="Sun" type="DirectionalLight3D" parent="SubViewportContainer/SubViewport"]
transform = Transform3D(0.984808, 0.122788, -0.122788, 0, 0.707107, 0.707107, 0.173648, -0.696364, 0.696364, 0, 5, 0)
shadow_enabled = true
2024-01-17 20:48:35 +00:00
directional_shadow_mode = 0
2024-01-15 16:08:26 +00:00
script = ExtResource("5_pf5uw")
[node name="Environment" type="WorldEnvironment" parent="SubViewportContainer/SubViewport"]
environment = ExtResource("5_bll74")
camera_attributes = ExtResource("6_8wfwf")
2024-01-16 22:01:16 +00:00
[node name="World" type="Node3D" parent="SubViewportContainer/SubViewport"]
[node name="Ground" type="MeshInstance3D" parent="SubViewportContainer/SubViewport/World"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0)
mesh = SubResource("BoxMesh_0bujj")
skeleton = NodePath("../../../..")
[node name="StaticBody3D" type="StaticBody3D" parent="SubViewportContainer/SubViewport/World/Ground"]
[node name="CollisionShape3D" type="CollisionShape3D" parent="SubViewportContainer/SubViewport/World/Ground/StaticBody3D"]
shape = SubResource("BoxShape3D_58ws3")
[node name="Tree" parent="SubViewportContainer/SubViewport/World" instance=ExtResource("15_csh38")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.11323, 0, -4.64839)
2024-01-17 20:48:35 +00:00
[node name="Tree2" parent="SubViewportContainer/SubViewport/World" instance=ExtResource("15_csh38")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.11323, 0, 5.35161)
2024-01-16 22:01:16 +00:00
[node name="Players" type="Node3D" parent="SubViewportContainer/SubViewport"]
unique_name_in_owner = true
2024-01-17 20:48:35 +00:00
[node name="Enemies" type="Node3D" parent="SubViewportContainer/SubViewport"]
[node name="Slime" parent="SubViewportContainer/SubViewport/Enemies" instance=ExtResource("16_fuixr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.53558, 0, -3.79687)
[node name="Slime2" parent="SubViewportContainer/SubViewport/Enemies" instance=ExtResource("16_fuixr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.00829, 0, -1.95247)
[node name="Slime3" parent="SubViewportContainer/SubViewport/Enemies" instance=ExtResource("16_fuixr")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.53558, 0, -0.306177)
2024-01-16 22:01:16 +00:00
[connection signal="timeout" from="Network/Ping/Timer" to="Network/Ping" method="send_ping"]
[connection signal="timeout" from="Network/Login/Timer" to="Network/Login" method="send_login"]