project.godot 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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="Multi-channel Signed Distance Field Font Demo"
  11. config/description="This is a demo of Signed Distance Field fonts in Godot.
  12. The technique used allows the text to remain clear under arbitrary zooms and rotations.
  13. The multi-channel part refers to the font texture being generated in a way that allows
  14. for higher precision when rendering the font. This allows MSDF fonts to be more readable
  15. at small font sizes compared to single-channel signed distance field fonts."
  16. config/tags=PackedStringArray("2d", "demo", "gui", "official", "rendering")
  17. run/main_scene="res://sdf_font_demo.tscn"
  18. config/features=PackedStringArray("4.2")
  19. config/icon="res://icon.webp"
  20. [display]
  21. window/stretch/mode="canvas_items"
  22. window/stretch/aspect="expand"
  23. [input]
  24. toggle_msdf_font={
  25. "deadzone": 0.5,
  26. "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":83,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null)
  27. ]
  28. }
  29. [rendering]
  30. renderer/rendering_method="mobile"
  31. environment/defaults/default_clear_color=Color(0.180392, 0.117647, 0.152941, 1)