Files
godot-demo-projects/mobile/multitouch_view/project.godot
2025-10-11 05:03:59 -07:00

42 lines
1000 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=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.5")
config/icon="res://icon.webp"
[autoload]
TouchHelper="*res://touch_helper.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)