123456789101112131415161718192021222324252627282930 |
- ; 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"
- [input_devices]
- pointing/emulate_touch_from_mouse=true
- [rendering]
- environment/defaults/default_clear_color=Color(0.113725, 0.133333, 0.196078, 1)
|