1234567891011121314151617181920212223242526272829303132333435 |
- ; 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 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."
- run/main_scene="res://Main.tscn"
- config/icon="res://icon.png"
- [gdnative]
- singletons=[ ]
- [input_devices]
- pointing/emulate_touch_from_mouse=true
- [rendering]
- quality/driver/driver_name="GLES2"
- quality/intended_usage/framebuffer_allocation=0
- quality/intended_usage/framebuffer_allocation.mobile=0
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
- environment/default_clear_color=Color( 0.113725, 0.133333, 0.196078, 1 )
- environment/default_environment="res://default_env.tres"
|