Engine.json 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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" : "Atomic 2D Physics",
  27. "fullscreen" : false,
  28. "borderless" : false,
  29. "resizable" : false,
  30. "width" : 1280,
  31. "height" : 720
  32. },
  33. "sound": {
  34. "enabled" : true,
  35. "interpolation" : true,
  36. "stereo" : true,
  37. "bufferMS": 100,
  38. "mixRate" : 44100
  39. },
  40. "input" : {
  41. "touchEmulation" : false
  42. }
  43. }
  44. }