132 lines
3.8 KiB
Plaintext
132 lines
3.8 KiB
Plaintext
; 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": "TextEdit",
|
|
"class": "ContentFitTextEdit",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/utility_controls/content_fit_text_edit.gd"
|
|
}, {
|
|
"base": "MarginContainer",
|
|
"class": "EditableTextBlock",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/utility_controls/editable_text_block.gd"
|
|
}, {
|
|
"base": "Resource",
|
|
"class": "EmoteList",
|
|
"language": "GDScript",
|
|
"path": "res://configuration/emotes/emote_list.gd"
|
|
}, {
|
|
"base": "Reference",
|
|
"class": "Message",
|
|
"language": "GDScript",
|
|
"path": "res://system/data/message_data/message.gd"
|
|
}, {
|
|
"base": "Object",
|
|
"class": "MessageData",
|
|
"language": "GDScript",
|
|
"path": "res://system/data/message_data/message_data_singleton.gd"
|
|
}, {
|
|
"base": "EditableTextBlock",
|
|
"class": "MessageEditable",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/chat_panel/message_editable.gd"
|
|
}, {
|
|
"base": "Reference",
|
|
"class": "MessageGroup",
|
|
"language": "GDScript",
|
|
"path": "res://system/data/message_data/message_group.gd"
|
|
}, {
|
|
"base": "HBoxContainer",
|
|
"class": "MessageGroupContainer",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/chat_panel/message_group_container.gd"
|
|
}, {
|
|
"base": "Reference",
|
|
"class": "Topic",
|
|
"language": "GDScript",
|
|
"path": "res://system/data/topic_data/topic.gd"
|
|
}, {
|
|
"base": "Object",
|
|
"class": "TopicData",
|
|
"language": "GDScript",
|
|
"path": "res://system/data/topic_data/topic_data_singleton.gd"
|
|
}, {
|
|
"base": "Container",
|
|
"class": "TopicDraggable",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/topic_panel/topic_draggable.gd"
|
|
}, {
|
|
"base": "EditableTextBlock",
|
|
"class": "TopicEditable",
|
|
"language": "GDScript",
|
|
"path": "res://user_interface/topic_panel/topic_editable.gd"
|
|
}, {
|
|
"base": "Resource",
|
|
"class": "User",
|
|
"language": "GDScript",
|
|
"path": "res://system/users/user.gd"
|
|
} ]
|
|
_global_script_class_icons={
|
|
"ContentFitTextEdit": "",
|
|
"EditableTextBlock": "",
|
|
"EmoteList": "",
|
|
"Message": "",
|
|
"MessageData": "",
|
|
"MessageEditable": "",
|
|
"MessageGroup": "",
|
|
"MessageGroupContainer": "",
|
|
"Topic": "",
|
|
"TopicData": "",
|
|
"TopicDraggable": "",
|
|
"TopicEditable": "",
|
|
"User": ""
|
|
}
|
|
|
|
[application]
|
|
|
|
config/name="SelfMessenger"
|
|
run/main_scene="res://user_interface/main.tscn"
|
|
config/icon="res://icon.png"
|
|
|
|
[autoload]
|
|
|
|
Data="*res://system/data/data_singleton.gd"
|
|
Users="*res://system/users/users_singleton.gd"
|
|
Time="*res://system/time/time_singleton.gd"
|
|
PingSystem="*res://system/ping_system/ping_system.tscn"
|
|
Call="*res://system/call/call_singleton.gd"
|
|
|
|
[display]
|
|
|
|
window/size/height=576
|
|
|
|
[input]
|
|
|
|
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,"physical_scancode":0,"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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
|
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":0,"pressure":0.0,"pressed":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,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
|
|
]
|
|
}
|
|
|
|
[physics]
|
|
|
|
common/enable_pause_aware_picking=true
|
|
|
|
[rendering]
|
|
|
|
quality/driver/driver_name="GLES2"
|
|
vram_compression/import_etc=true
|
|
vram_compression/import_etc2=false
|
|
environment/default_environment="res://default_env.tres"
|