project.godot 975 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="Variable Rate Shading"
  11. config/description="This project showcases how to use variable rate shading (VRS) in 3D to improve performance.
  12. Performance metrics are also displayed to evaluate potential performance gains."
  13. config/tags=PackedStringArray("3d", "demo", "official", "performance", "rendering")
  14. run/main_scene="res://vrs.tscn"
  15. config/features=PackedStringArray("4.2")
  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. [rendering]
  22. textures/default_filters/anisotropic_filtering_level=4
  23. vrs/mode=1
  24. vrs/texture="res://vrs_texture.png"
  25. textures/quality/screen_space_aa=0
  26. [xr]
  27. shaders/enabled=true