This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
odyssey-old/project.godot

289 lines
9.6 KiB
Plaintext
Raw Normal View History

2020-07-06 12:38:05 +00:00
; 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=[ {
2020-07-07 07:40:20 +00:00
"base": "Area2D",
"class": "ActivationRange",
"language": "GDScript",
"path": "res://Actors/Components/ActivationRange.gd"
}, {
"base": "Reference",
"class": "Coordinates",
"language": "GDScript",
"path": "res://Classes/Coordinates.gd"
}, {
2020-07-09 07:19:17 +00:00
"base": "Area2D",
"class": "ElectricSocket",
"language": "GDScript",
"path": "res://Actors/Objects/ElectricSocket/ElectricSocket.gd"
}, {
2020-07-06 22:00:39 +00:00
"base": "Node",
"class": "GameInstance",
"language": "GDScript",
"path": "res://Scenes/Game.gd"
}, {
2020-07-07 12:51:30 +00:00
"base": "Node2D",
"class": "GameMap",
"language": "GDScript",
"path": "res://Scenes/Map.gd"
}, {
2020-07-07 11:01:12 +00:00
"base": "StaticBody2D",
"class": "GameObjectComputer",
"language": "GDScript",
"path": "res://Actors/Objects/Computer/Computer.gd"
}, {
"base": "StaticBody2D",
"class": "GameObjectDoor",
"language": "GDScript",
"path": "res://Actors/Objects/Door/Door.gd"
}, {
"base": "StaticBody2D",
"class": "GameObjectEngine",
"language": "GDScript",
"path": "res://Actors/Objects/Engine/Engine.gd"
}, {
"base": "Area2D",
"class": "GameObjectLightbulb",
"language": "GDScript",
"path": "res://Actors/Objects/Lightbulb/Lightbulb.gd"
}, {
"base": "StaticBody2D",
"class": "GameObjectPowerStorage",
"language": "GDScript",
"path": "res://Actors/Objects/PowerStorage/PowerStorage.gd"
}, {
2020-07-07 18:42:22 +00:00
"base": "StaticBody2D",
"class": "GameObjectScanner",
"language": "GDScript",
"path": "res://Actors/Objects/Scanner/Scanner.gd"
}, {
2020-07-20 09:15:39 +00:00
"base": "Control",
"class": "GameUI",
"language": "GDScript",
"path": "res://Scenes/UI.gd"
}, {
2020-07-06 22:00:39 +00:00
"base": "Node2D",
"class": "GameWorld",
"language": "GDScript",
"path": "res://Scenes/World.gd"
}, {
2020-07-06 12:38:05 +00:00
"base": "TileMap",
"class": "MapTiles",
"language": "GDScript",
"path": "res://Scenes/Rendering/MapTiles.gd"
}, {
2020-07-23 08:50:47 +00:00
"base": "Reference",
"class": "Names",
"language": "GDScript",
"path": "res://Classes/Names.gd"
}, {
2020-07-06 12:38:05 +00:00
"base": "Node2D",
"class": "Occluder",
"language": "GDScript",
"path": "res://Scenes/Rendering/Occluder.gd"
2020-07-06 22:00:39 +00:00
}, {
"base": "Node2D",
"class": "POI",
"language": "GDScript",
"path": "res://Actors/Meta/POI/POI.gd"
}, {
2020-07-08 12:30:46 +00:00
"base": "Node",
"class": "PowerManager",
"language": "GDScript",
"path": "res://Actors/Components/PowerManager.gd"
}, {
2020-07-08 22:12:14 +00:00
"base": "Node",
"class": "PowerNetwork",
"language": "GDScript",
"path": "res://Actors/Systems/Electricity/PowerNetwork.gd"
}, {
2020-07-20 09:15:39 +00:00
"base": "Node2D",
"class": "ProbeArea",
"language": "GDScript",
"path": "res://Actors/Systems/Area/AreaProbe.gd"
}, {
2020-07-08 12:30:46 +00:00
"base": "Area2D",
"class": "ProbeElectric",
"language": "GDScript",
"path": "res://Actors/Systems/Electricity/ElectricProbe.gd"
}, {
2020-07-13 00:20:09 +00:00
"base": "Reference",
"class": "ResourceQueue",
"language": "GDScript",
"path": "res://Classes/ResourceQueue.gd"
}, {
2020-07-06 22:00:39 +00:00
"base": "Reference",
"class": "UICommand",
"language": "GDScript",
"path": "res://Classes/UICommand.gd"
2020-07-28 07:54:04 +00:00
}, {
"base": "TextureRect",
"class": "UIItemBox",
"language": "GDScript",
"path": "res://Scenes/UI/Items/ItemBox.gd"
2020-07-06 12:38:05 +00:00
} ]
_global_script_class_icons={
2020-07-07 07:40:20 +00:00
"ActivationRange": "",
"Coordinates": "",
2020-07-09 07:19:17 +00:00
"ElectricSocket": "",
2020-07-06 22:00:39 +00:00
"GameInstance": "",
2020-07-07 12:51:30 +00:00
"GameMap": "",
2020-07-07 11:01:12 +00:00
"GameObjectComputer": "",
"GameObjectDoor": "",
"GameObjectEngine": "",
"GameObjectLightbulb": "",
"GameObjectPowerStorage": "",
2020-07-07 18:42:22 +00:00
"GameObjectScanner": "",
2020-07-20 09:15:39 +00:00
"GameUI": "",
2020-07-06 22:00:39 +00:00
"GameWorld": "",
2020-07-06 12:38:05 +00:00
"MapTiles": "",
2020-07-23 08:50:47 +00:00
"Names": "",
2020-07-06 22:00:39 +00:00
"Occluder": "",
"POI": "",
2020-07-08 12:30:46 +00:00
"PowerManager": "",
2020-07-08 22:12:14 +00:00
"PowerNetwork": "",
2020-07-20 09:15:39 +00:00
"ProbeArea": "",
2020-07-08 12:30:46 +00:00
"ProbeElectric": "",
2020-07-13 00:20:09 +00:00
"ResourceQueue": "",
2020-07-28 07:54:04 +00:00
"UICommand": "",
"UIItemBox": ""
2020-07-06 12:38:05 +00:00
}
[application]
2020-07-12 15:26:40 +00:00
config/name="NSS Odyssey"
2020-07-10 13:20:56 +00:00
run/main_scene="res://Scenes/Menu.tscn"
2020-07-10 16:21:33 +00:00
boot_splash/image="res://Graphics/UI/splash.png"
boot_splash/fullsize=false
2020-07-06 12:38:05 +00:00
config/icon="res://icon.png"
2020-07-10 13:37:13 +00:00
[autoload]
Music="*res://Scenes/Global/Music.tscn"
2020-07-12 15:26:40 +00:00
Multiplayer="*res://Scenes/Global/Multiplayer.gd"
SceneManager="*res://Scenes/Global/SceneManager.gd"
2020-07-10 13:37:13 +00:00
2020-07-06 12:38:05 +00:00
[display]
window/size/width=1280
window/size/height=800
[editor_plugins]
enabled=PoolStringArray( "pnhelper" )
2020-07-10 00:09:54 +00:00
[gui]
theme/custom="res://Graphics/UI/ui_theme.tres"
2020-07-06 12:38:05 +00:00
[input]
2020-07-06 19:58:42 +00:00
ui_accept={
"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":16777221,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777222,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
]
}
ui_select={
"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":32,"unicode":0,"echo":false,"script":null)
]
}
ui_cancel={
"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":16777217,"unicode":0,"echo":false,"script":null)
]
}
2020-07-06 12:38:05 +00:00
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)
]
}
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)
]
}
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)
]
}
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)
2020-07-06 19:58:42 +00:00
]
}
sprint={
"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":16777237,"unicode":0,"echo":false,"script":null)
2020-07-06 12:38:05 +00:00
]
}
2020-07-22 15:34:04 +00:00
ui_chat={
"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":84,"unicode":0,"echo":false,"script":null)
]
}
2020-07-23 12:21:27 +00:00
inspect={
"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":16777237,"unicode":0,"echo":false,"script":null)
]
}
2020-07-24 11:49:22 +00:00
ui_zoomin={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":4,"pressed":false,"doubleclick":false,"script":null)
]
}
ui_zoomout={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":5,"pressed":false,"doubleclick":false,"script":null)
]
}
2020-07-28 07:54:04 +00:00
ui_scroll_left={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":4,"pressed":false,"doubleclick":false,"script":null)
]
}
ui_scroll_right={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":5,"pressed":false,"doubleclick":false,"script":null)
]
}
alt_hand={
"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":16777237,"unicode":0,"echo":false,"script":null)
]
}
swap_hands={
"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":88,"unicode":0,"echo":false,"script":null)
]
}
2020-07-06 12:38:05 +00:00
2020-07-08 12:30:46 +00:00
[layer_names]
2d_physics/layer_1="Environment"
2020-07-23 12:21:27 +00:00
2d_physics/layer_2="Objects"
2020-07-08 12:30:46 +00:00
2d_physics/layer_3="Electric"
2020-07-14 00:00:43 +00:00
2d_physics/layer_4="Actors"
2020-07-20 09:15:39 +00:00
2d_physics/layer_5="AreaBound"
2020-07-20 13:04:56 +00:00
2d_physics/layer_6="Sound"
2020-07-08 12:30:46 +00:00
2020-07-06 12:38:05 +00:00
[rendering]
quality/driver/driver_name="GLES2"
quality/2d/use_pixel_snap=true
threads/thread_model=2
2020-07-06 12:38:05 +00:00
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"