123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ; 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=5
- [application]
- config/name="Multitouch View"
- config/description="Simple debugger for multitouch input. Shows red dots everywhere you press."
- config/tags=PackedStringArray("demo", "input", "mobile", "official")
- run/main_scene="res://Main.tscn"
- config/features=PackedStringArray("4.2")
- config/icon="res://icon.webp"
- [autoload]
- TouchHelper="*res://TouchHelper.gd"
- [debug]
- gdscript/warnings/untyped_declaration=1
- [display]
- window/stretch/mode="canvas_items"
- window/stretch/aspect="expand"
- [input_devices]
- pointing/emulate_touch_from_mouse=true
- [rendering]
- renderer/rendering_method="gl_compatibility"
- renderer/rendering_method.mobile="gl_compatibility"
- environment/defaults/default_clear_color=Color(0.113725, 0.133333, 0.196078, 1)
|