project.godot 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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="Rich Text Label with BBCode"
  11. config/description="A demo showcasing the support for rich text and BBCode via RichTextLabel."
  12. config/tags=PackedStringArray("demo", "gui", "official")
  13. run/main_scene="res://rich_text_bbcode.tscn"
  14. config/features=PackedStringArray("4.2")
  15. run/low_processor_mode=true
  16. config/icon="res://icon.webp"
  17. [debug]
  18. gdscript/warnings/untyped_declaration=1
  19. [display]
  20. window/stretch/mode="canvas_items"
  21. window/stretch/aspect="expand"
  22. window/vsync/vsync_mode=0
  23. [input]
  24. toggle_pause={
  25. "deadzone": 0.2,
  26. "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194313,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null)
  27. ]
  28. }
  29. [memory]
  30. multithread/thread_rid_pool_prealloc=60
  31. [rendering]
  32. renderer/rendering_method="gl_compatibility"
  33. renderer/rendering_method.mobile="gl_compatibility"
  34. environment/defaults/default_clear_color=Color(0.145098, 0.145098, 0.164706, 1)