78 lines
2.7 KiB
Text
78 lines
2.7 KiB
Text
|
; 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=4
|
||
|
|
||
|
_global_script_classes=[ {
|
||
|
"base": "Node2D",
|
||
|
"class": "Map",
|
||
|
"language": "GDScript",
|
||
|
"path": "res://Scenes/Map.gd"
|
||
|
}, {
|
||
|
"base": "TileMap",
|
||
|
"class": "MapTiles",
|
||
|
"language": "GDScript",
|
||
|
"path": "res://Scenes/Rendering/MapTiles.gd"
|
||
|
}, {
|
||
|
"base": "Node2D",
|
||
|
"class": "Occluder",
|
||
|
"language": "GDScript",
|
||
|
"path": "res://Scenes/Rendering/Occluder.gd"
|
||
|
} ]
|
||
|
_global_script_class_icons={
|
||
|
"Map": "",
|
||
|
"MapTiles": "",
|
||
|
"Occluder": ""
|
||
|
}
|
||
|
|
||
|
[application]
|
||
|
|
||
|
config/name="odyssey"
|
||
|
run/main_scene="res://Scenes/Test.tscn"
|
||
|
config/icon="res://icon.png"
|
||
|
|
||
|
[display]
|
||
|
|
||
|
window/size/width=1280
|
||
|
window/size/height=800
|
||
|
|
||
|
[input]
|
||
|
|
||
|
ui_left={
|
||
|
"deadzone": 0.5,
|
||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
|
||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
ui_right={
|
||
|
"deadzone": 0.5,
|
||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
|
||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":15,"pressure":0.0,"pressed":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
ui_up={
|
||
|
"deadzone": 0.5,
|
||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
|
||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":12,"pressure":0.0,"pressed":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
ui_down={
|
||
|
"deadzone": 0.5,
|
||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
|
||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"pressure":0.0,"pressed":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
|
||
|
[rendering]
|
||
|
|
||
|
quality/driver/driver_name="GLES2"
|
||
|
vram_compression/import_etc=true
|
||
|
vram_compression/import_etc2=false
|
||
|
environment/default_clear_color=Color( 0, 0, 0, 1 )
|
||
|
environment/default_environment="res://default_env.tres"
|