mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
35 lines
773 B
Plaintext
35 lines
773 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="Audio Mic Record Demo"
|
||
|
config/description="This is an example showing how one can record audio from
|
||
|
the microphone and later play it back or save it to a file."
|
||
|
run/main_scene="res://MicRecord.tscn"
|
||
|
config/icon="res://icon.png"
|
||
|
|
||
|
[audio]
|
||
|
|
||
|
enable_audio_input=true
|
||
|
|
||
|
[display]
|
||
|
|
||
|
window/size/width=640
|
||
|
window/size/height=480
|
||
|
window/dpi/allow_hidpi=true
|
||
|
window/stretch/mode="2d"
|
||
|
window/stretch/aspect="expand"
|
||
|
|
||
|
[rendering]
|
||
|
|
||
|
vram_compression/import_etc=true
|
||
|
vram_compression/import_etc2=false
|