1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
[gd_scene load_steps=12 format=3 uid="uid://c6krh36hoqfg8"]
[ext_resource type="Script" path="res://game.gd" id="1_sftfn"]
[ext_resource type="PackedScene" uid="uid://b31mlnao6ybt8" path="res://player/follow_camera.tscn" id="2_s8y6o"]
[ext_resource type="Script" path="res://map/auto_setup/environment_setup.gd" id="4_hixq3"]
[ext_resource type="PackedScene" uid="uid://c0euiv7duqfp4" path="res://player/marker.tscn" id="4_igl0o"]
[ext_resource type="Script" path="res://map/auto_setup/light_setup.gd" id="5_6fpff"]
[ext_resource type="Script" path="res://multiplayer.gd" id="6_fbxu8"]
[ext_resource type="PackedScene" uid="uid://b4gone8fu53r7" path="res://map/map.tscn" id="6_prg6t"]
[ext_resource type="PackedScene" uid="uid://bpikve6wlsjfl" path="res://menu/overlay.tscn" id="7_7xrr6"]
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_py7px"]
ground_bottom_color = Color(0.0826605, 0.065772, 0.0461518, 1)
[sub_resource type="Sky" id="Sky_ultpf"]
sky_material = SubResource("ProceduralSkyMaterial_py7px")
[sub_resource type="Environment" id="Environment_m4dli"]
background_mode = 2
sky = SubResource("Sky_ultpf")
tonemap_mode = 2
ssao_enabled = true
sdfgi_use_occlusion = true
sdfgi_energy = 2.0
[node name="Game" type="Node3D"]
script = ExtResource("1_sftfn")
[node name="Multiplayer" type="Node" parent="."]
script = ExtResource("6_fbxu8")
[node name="FollowCamera" parent="." node_paths=PackedStringArray("target") instance=ExtResource("2_s8y6o")]
transform = Transform3D(0.728777, 0.294253, -0.618303, 0, 0.902961, 0.429723, 0.684751, -0.313173, 0.658057, -2.36537, 1.99403, 3.29507)
current = true
far = 150.0
target = NodePath("..")
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = SubResource("Environment_m4dli")
script = ExtResource("4_hixq3")
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
transform = Transform3D(-0.412548, 0.834939, -0.364255, 4.90703e-08, 0.399869, 0.916572, 0.910936, 0.37813, -0.164965, 0, 0, 0)
shadow_enabled = true
script = ExtResource("5_6fpff")
[node name="Marker" parent="." instance=ExtResource("4_igl0o")]
visible = false
[node name="Map" parent="." instance=ExtResource("6_prg6t")]
[node name="Overlay" parent="." instance=ExtResource("7_7xrr6")]
offset_left = -280.0
offset_bottom = 102.0
[node name="Debug" type="RichTextLabel" parent="."]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_colors/font_outline_color = Color(0, 0, 0, 1)
theme_override_constants/outline_size = 5
|