Engine.json 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "desktop": {
  3. "engine" : {
  4. "workerThreads" : true,
  5. "logQuiet" : false,
  6. "logLevel" : 1
  7. },
  8. "graphics": {
  9. "headless": false,
  10. "frameLimiter" : true,
  11. "flushGPU" : false,
  12. "forceGL2" : false,
  13. "orientations" : "LandscapeLeft LandscapeRight",
  14. "vsync" : false,
  15. "tripleBuffer" : false,
  16. "multiSample" : 1,
  17. "renderPath" : "forward",
  18. "shadows" : true,
  19. "lowQualityShadows" : false,
  20. "materialQuality" : "high",
  21. "textureQuality" : "high",
  22. "textureFilterMode" : "trilinear",
  23. "textureAnisotropy" : 4
  24. },
  25. "window" : {
  26. "title" : "Roboman3D",
  27. "fullscreen" : false,
  28. "borderless" : false,
  29. "resizable" : false
  30. },
  31. "sound": {
  32. "enabled" : true,
  33. "interpolation" : true,
  34. "stereo" : true,
  35. "bufferMS": 100,
  36. "mixRate" : 44100
  37. },
  38. "input" : {
  39. "touchEmulation" : false
  40. }
  41. }
  42. }