mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 23:10:08 +01:00
This makes sorting them in the project manager easier, as you can click tags in the project manager to filter to a specific tag.
30 lines
733 B
Plaintext
30 lines
733 B
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
|
|
|
|
[application]
|
|
|
|
config/name="Multitouch View"
|
|
config/description="Simple debugger for multitouch input. Shows red dots everywhere you press."
|
|
run/main_scene="res://Main.tscn"
|
|
config/icon="res://icon.webp"
|
|
config/tags=PackedStringArray("official", "demo", "mobile", "input")
|
|
|
|
[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)
|