project.godot 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [display]
  18. window/stretch/mode="canvas_items"
  19. window/stretch/aspect="expand"
  20. window/vsync/vsync_mode=0
  21. [input]
  22. toggle_pause={
  23. "deadzone": 0.5,
  24. "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)
  25. ]
  26. }
  27. [memory]
  28. multithread/thread_rid_pool_prealloc=60
  29. [rendering]
  30. renderer/rendering_method="gl_compatibility"
  31. renderer/rendering_method.mobile="gl_compatibility"
  32. environment/defaults/default_clear_color=Color(0.145098, 0.145098, 0.164706, 1)