123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- ; 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": "Node",
- "class": "AsyncHelper",
- "language": "GDScript",
- "path": "res://src/utils/async_helper/async_helper.gd"
- }, {
- "base": "PanelContainer",
- "class": "ButtonContainer",
- "language": "GDScript",
- "path": "res://src/scenes/button_container/button_container.gd"
- }, {
- "base": "HBoxContainer",
- "class": "ChannelCard",
- "language": "GDScript",
- "path": "res://src/scenes/channel_card/channel_card.gd"
- }, {
- "base": "MarginContainer",
- "class": "ChannelWindow",
- "language": "GDScript",
- "path": "res://src/scenes/channel_window/channel_window.gd"
- }, {
- "base": "HBoxContainer",
- "class": "Comment",
- "language": "GDScript",
- "path": "res://src/scenes/comments/comment/comment.gd"
- }, {
- "base": "GridContainer",
- "class": "DynamicGridContainer",
- "language": "GDScript",
- "path": "res://src/scenes/dynamic_grid_container/dynamic_grid_container.gd"
- }, {
- "base": "Reference",
- "class": "Helpers",
- "language": "GDScript",
- "path": "res://src/utils/helpers/helpers.gd"
- }, {
- "base": "HBoxContainer",
- "class": "MainRegion",
- "language": "GDScript",
- "path": "res://src/scenes/main/main_region/main_region.gd"
- }, {
- "base": "PanelContainer",
- "class": "MediaListItem",
- "language": "GDScript",
- "path": "res://src/scenes/media_list_item/media_list_item.gd"
- }, {
- "base": "VSplitContainer",
- "class": "MediaWindow",
- "language": "GDScript",
- "path": "res://src/scenes/media_window/media_window.gd"
- }, {
- "base": "ConfirmationDialog",
- "class": "OpenWithNode",
- "language": "GDScript",
- "path": "res://src/scenes/open_with_node/open_with_node.gd"
- }, {
- "base": "Button",
- "class": "SectionButton",
- "language": "GDScript",
- "path": "res://src/scenes/sections_list/section_button/section_button.gd"
- } ]
- _global_script_class_icons={
- "AsyncHelper": "",
- "ButtonContainer": "",
- "ChannelCard": "",
- "ChannelWindow": "",
- "Comment": "",
- "DynamicGridContainer": "",
- "Helpers": "",
- "MainRegion": "",
- "MediaListItem": "",
- "MediaWindow": "",
- "OpenWithNode": "",
- "SectionButton": ""
- }
- [application]
- config/name="Freem"
- run/main_scene="res://src/scenes/main/main.tscn"
- config/use_custom_user_dir=true
- config/custom_user_dir_name="freem"
- config/icon="res://icon.png"
- config/auto_accept_quit=false
- [autoload]
- Cache="*res://src/utils/cache/cache.tscn"
- SDK="*res://src/utils/sdk/sdk.tscn"
- Data="*res://src/utils/io/data/data.tscn"
- LbrynetConfig="*res://src/utils/io/lbrynet_config/lbrynet_config.gd"
- Extensions="*res://src/utils/io/extensions/extensions.tscn"
- Cmdline="*res://src/utils/cmdline/cmdline.gd"
- MediaHandler="*res://src/utils/media_handler/media_handler.tscn"
- Requests="*res://src/utils/requests/requests.tscn"
- LBRYActions="*res://src/utils/lbry_actions/lbry_actions.tscn"
- DownloadManager="*res://src/utils/download_manager/download_manager.tscn"
- ThreadPool="*res://src/utils/thread_pool/thread_pool.tscn"
- [debug]
- gdscript/warnings/return_value_discarded=false
- [global]
- main=false
- use_custom=false
- exit=false
- cmd=false
- [gui]
- theme/custom_font="res://assets/fonts/dejavu_sans_mono.tres"
- [physics]
- common/enable_pause_aware_picking=true
- [rendering]
- environment/default_environment="res://default_env.tres"
|