12345678910111213141516171819202122232425262728 |
- ; 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 Cubes Demo "
- config/description="Demo of multitouch input and different gestures using the touch API. This demo is meant to be used with a touch-enabled device such as a phone or tablet."
- config/tags=PackedStringArray("demo", "input", "mobile", "official")
- run/main_scene="res://Main.tscn"
- config/features=PackedStringArray("4.2")
- config/icon="res://icon.webp"
- [input_devices]
- pointing/emulate_touch_from_mouse=true
- [rendering]
- textures/vram_compression/import_etc2_astc=true
- environment/defaults/default_clear_color=Color(0.113725, 0.133333, 0.196078, 1)
- environment/defaults/default_environment="res://default_env.tres"
|