project.godot 920 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ; Engine configuration file.
  2. ; It's best edited using the editor UI and not directly,
  3. ; since the parameters that go here are not all obvious.
  4. ;
  5. ; Format:
  6. ; [section] ; section goes between []
  7. ; param=value ; assign values to parameters
  8. config_version=5
  9. [application]
  10. config/name="Audio Mic Record Demo"
  11. config/description="This is an example showing how one can record audio from
  12. the microphone and later play it back or save it to a file."
  13. config/tags=PackedStringArray("audio", "demo", "official")
  14. run/main_scene="res://MicRecord.tscn"
  15. config/features=PackedStringArray("4.2")
  16. run/low_processor_mode=true
  17. config/icon="res://icon.webp"
  18. [audio]
  19. driver/enable_input=true
  20. enable_audio_input=true
  21. [display]
  22. window/size/viewport_width=640
  23. window/size/viewport_height=480
  24. window/stretch/mode="canvas_items"
  25. window/stretch/aspect="expand"
  26. window/vsync/vsync_mode=0
  27. [rendering]
  28. renderer/rendering_method="mobile"