123456789101112131415161718192021222324252627282930313233343536 |
- ; 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="MIDI Piano Demo"
- config/tags=PackedStringArray("audio", "demo", "official")
- run/main_scene="res://piano.tscn"
- config/features=PackedStringArray("4.2")
- config/icon="res://icon.webp"
- [display]
- window/size/viewport_width=1280
- window/size/viewport_height=200
- [network]
- limits/debugger_stdout/max_chars_per_second=2048000
- [physics]
- common/enable_pause_aware_picking=true
- [rendering]
- quality/driver/driver_name="GLES2"
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
|