quality.setreg 858 B

1234567891011121314151617181920212223242526
  1. {
  2. "O3DE": {
  3. "Quality": {
  4. // Linux platform specific quality setting overrides go in this file
  5. "Groups": {
  6. "q_general": {
  7. "Default": 0 // override the default level for this platform to be low
  8. }
  9. // Additional custom quality groups overrides go here.
  10. },
  11. "Devices": {
  12. // Device rules for this platform go here
  13. // Device rule groups can have whatever name makes sense to you
  14. //"Example": {
  15. // "Rules": {
  16. // "ExampleRegexRule": { "DeviceModel": "^ModelRegex$" }
  17. // },
  18. // "Settings": {
  19. // "q_general": 0
  20. // }
  21. //}
  22. }
  23. }
  24. }
  25. }