taqin/project.godot

84 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2019-11-20 13:54:16 +01: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
2019-11-22 13:38:50 +01:00
_global_script_classes=[ {
2020-05-28 19:03:23 +02:00
"base": "Control",
"class": "DepthButton",
"language": "GDScript",
"path": "res://src/DepthButton.gd"
}, {
2020-06-16 19:28:50 +02:00
"base": "Panel",
"class": "ImagePicker",
"language": "GDScript",
"path": "res://src/ImagePicker.gd"
}, {
2020-04-13 17:54:11 +02:00
"base": "PopupPanel",
"class": "NewGamePanel",
"language": "GDScript",
"path": "res://src/NewGamePanel.gd"
}, {
2019-11-22 13:38:50 +01:00
"base": "Node2D",
"class": "Piece",
"language": "GDScript",
"path": "res://src/Piece.gd"
}, {
2019-12-10 13:55:03 +01:00
"base": "Control",
2019-11-22 13:38:50 +01:00
"class": "Taquin",
"language": "GDScript",
"path": "res://src/Taquin.gd"
} ]
2019-11-20 13:54:16 +01:00
_global_script_class_icons={
2020-05-28 19:03:23 +02:00
"DepthButton": "",
2020-06-16 19:28:50 +02:00
"ImagePicker": "",
2020-04-13 17:54:11 +02:00
"NewGamePanel": "",
2019-11-22 13:38:50 +01:00
"Piece": "",
"Taquin": ""
2019-11-20 13:54:16 +01:00
}
[application]
2019-11-21 00:25:53 +01:00
config/name="Taqin"
2019-11-20 13:54:16 +01:00
run/main_scene="res://src/Main.tscn"
2020-06-12 19:00:37 +02:00
config/icon="res://assets/logo/logo_512.png"
2019-11-20 13:54:16 +01:00
2020-05-28 19:03:23 +02:00
[autoload]
Styles="*res://src/Styles.gd"
2019-11-20 13:54:16 +01:00
[display]
window/size/resizable=false
2020-06-03 16:08:31 +02:00
window/size/test_width=600
window/size/test_height=1200
2020-05-28 19:03:23 +02:00
window/dpi/allow_hidpi=true
2020-06-03 19:15:38 +02:00
window/energy_saving/keep_screen_on=false
2020-05-28 19:03:23 +02:00
window/handheld/orientation="portrait"
2020-01-03 14:22:50 +01:00
window/size/width.mobile=600
window/size/height.mobile=1200
window/stretch/aspect.mobile="expand"
2020-06-16 19:28:50 +02:00
window/stretch/mode.mobile="2d"
2019-11-20 13:54:16 +01:00
2020-05-28 19:03:23 +02:00
[filesystem]
import/open_asset_import/use_fbx=false
[gui]
theme/use_hidpi=true
theme/custom="res://assets/taqin_theme.tres"
2020-02-09 17:01:32 +01:00
[input_devices]
pointing/emulate_touch_from_mouse=true
2019-11-20 13:54:16 +01:00
[rendering]
environment/default_environment="res://default_env.tres"