-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathproject.godot
More file actions
86 lines (59 loc) · 2.04 KB
/
project.godot
File metadata and controls
86 lines (59 loc) · 2.04 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=5
[animation]
compatibility/default_parent_skeleton_in_mesh_instance_3d=true
[application]
config/name="GECS"
config/description="Godot Entity Component System - Example project and testing suite"
config/version="5.0.0"
run/main_scene="res://example_stress_test/main.tscn"
config/features=PackedStringArray("4.7", "Forward Plus")
[audio]
buses/default_bus_layout="res://game/assets/audio/default_bus_layout.tres"
manager/sound/bus="Sound"
manager/sound/pool_1D_size=16
manager/sound/pool_2D_size=16
manager/sound/pool_3D_size=16
manager/sound/max_polyphony=32
manager/music/bus="Music"
[autoload]
DebugMenu="*uid://cggqb75a8w8r"
ECS="*uid://dfqwl5njvdnmq"
[display]
window/vsync/vsync_mode=2
[editor_plugins]
enabled=PackedStringArray("res://addons/debug_menu/plugin.cfg", "res://addons/gdUnit4/plugin.cfg", "res://addons/gecs/plugin.cfg", "res://addons/godot-plugin-refresher/plugin.cfg", "res://addons/stack_trace_copier/plugin.cfg")
[gdunit4]
settings/test/test_lookup_folder="tests"
ui/inspector/tree_sort_mode=1
ui/toolbar/run_overall=true
hooks/session_hooks=Dictionary[String, bool]({
"res://addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd": false,
"res://addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd": false
})
settings/test/test_discovery=true
[gecs]
settings/debug_mode=true
[global_group]
navigation_mesh_source_group=""
[layer_names]
3d_physics/layer_1="world"
3d_physics/layer_2="hitbox"
3d_physics/layer_3="projectile"
3d_physics/layer_4="player"
3d_physics/layer_5="enemy"
3d_physics/layer_6="pickup"
3d_physics/layer_7="victim"
[navigation]
baking/use_crash_prevention_checks=false
[physics]
3d/physics_engine="Jolt Physics"
common/physics_interpolation=true
[rendering]
environment/defaults/default_clear_color=Color(0.129412, 0.14902, 0.180392, 1)