config.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. ###########################################################
  2. ### ###
  3. ### Panda3D Configuration File - User-Editable Portion ###
  4. ### ###
  5. ###########################################################
  6. # Uncomment one of the following lines to choose whether you should
  7. # run using OpenGL, DirectX or TinyPanda (software) rendering.
  8. # There can only be one load-display line, but you can use
  9. # multiple aux-display lines to specify fallback modules.
  10. # When the module indicated by load-display fails, it will fall
  11. # back to the next display module indicated by aux-display,
  12. # when that fails, the next aux-display line, and so on.
  13. load-display pandagl
  14. #load-display pandadx9
  15. #load-display pandagles
  16. #load-display p3tinydisplay
  17. # These control the placement and size of the default rendering window.
  18. # A value of -2 for the origin means to center it on the screen,
  19. # while -1 lets the window manager choose the position.
  20. win-origin -2 -2
  21. win-size 800 600
  22. # Uncomment this line if you want to run Panda fullscreen instead of
  23. # in a window.
  24. fullscreen #f
  25. # The framebuffer-hardware flag forces it to use an accelerated driver.
  26. # The framebuffer-software flag forces it to use a software renderer.
  27. # If you set both to false, it will use whatever's available.
  28. framebuffer-hardware #t
  29. framebuffer-software #f
  30. # These set the minimum requirements for the framebuffer.
  31. # A value of 1 means: get as many bits as possible,
  32. # consistent with the other framebuffer requirements.
  33. depth-bits 1
  34. color-bits 1 1 1
  35. alpha-bits 0
  36. stencil-bits 0
  37. multisamples 0
  38. # These control the amount of output Panda gives for some various
  39. # categories. The severity levels, in order, are "spam", "debug",
  40. # "info", "warning", and "error"; the default is "info". Uncomment
  41. # one (or define a new one for the particular category you wish to
  42. # change) to control this output.
  43. notify-level warning
  44. default-directnotify-level warning
  45. # These specify where model files may be loaded from. You probably
  46. # want to set this to a sensible path for yourself. $THIS_PRC_DIR is
  47. # a special variable that indicates the same directory as this
  48. # particular Config.prc file.
  49. model-path $MAIN_DIR
  50. model-path $THIS_PRC_DIR/..
  51. model-path $THIS_PRC_DIR/../models
  52. # This enable the automatic creation of a TK window when running
  53. # Direct.
  54. want-directtools #f
  55. want-tk #f
  56. # Enable/disable performance profiling tool and frame-rate meter
  57. want-pstats #f
  58. show-frame-rate-meter #f
  59. # Enable audio using the OpenAL audio library by default:
  60. audio-library-name p3openal_audio
  61. # Enable the use of the new movietexture class.
  62. use-movietexture #t
  63. # The new version of panda supports hardware vertex animation, but it's not quite ready
  64. hardware-animated-vertices #f
  65. # Enable the model-cache, but only for models, not textures.
  66. model-cache-dir $XDG_CACHE_HOME/panda3d
  67. model-cache-textures #f
  68. # This option specifies the default profiles for Cg shaders.
  69. # Setting it to #t makes them arbvp1 and arbfp1, since these
  70. # seem to be most reliable. Setting it to #f makes Panda use
  71. # the latest profile available.
  72. basic-shaders-only #f