config.in 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 or DirectX rendering.
  8. load-display pandagl
  9. # These control the placement and size of the default rendering window.
  10. win-origin 50 50
  11. win-size 800 600
  12. # Uncomment this line if you want to run Panda fullscreen instead of
  13. # in a window.
  14. fullscreen #f
  15. # The framebuffer-hardware flag forces it to use an accelerated driver.
  16. # The framebuffer-software flag forces it to use a software renderer.
  17. # If you don't set either, it will use whatever's available.
  18. framebuffer-hardware #t
  19. framebuffer-software #f
  20. # These set the minimum requirements for the framebuffer.
  21. depth-bits 16
  22. color-bits 16
  23. alpha-bits 0
  24. stencil-bits 0
  25. multisamples 0
  26. # These control the amount of output Panda gives for some various
  27. # categories. The severity levels, in order, are "spam", "debug",
  28. # "info", "warning", and "fatal"; the default is "info". Uncomment
  29. # one (or define a new one for the particular category you wish to
  30. # change) to control this output.
  31. notify-level warning
  32. default-directnotify-level warning
  33. # These specify where model files may be loaded from. You probably
  34. # want to set this to a sensible path for yourself. $THIS_PRC_DIR is
  35. # a special variable that indicates the same directory as this
  36. # particular Config.prc file.
  37. model-path $MAIN_DIR
  38. model-path $THIS_PRC_DIR/..
  39. model-path $THIS_PRC_DIR/../models
  40. sound-path $MAIN_DIR
  41. sound-path $THIS_PRC_DIR/..
  42. sound-path $THIS_PRC_DIR/../models
  43. texture-path $MAIN_DIR
  44. texture-path $THIS_PRC_DIR/..
  45. texture-path $THIS_PRC_DIR/../models
  46. # This enable the automatic creation of a TK window when running
  47. # Direct.
  48. want-directtools #f
  49. want-tk #f
  50. # Enable/disable performance profiling tool and frame-rate meter
  51. want-pstats #f
  52. show-frame-rate-meter #f
  53. # Enable audio using the OpenAL audio library by default:
  54. audio-library-name p3openal_audio
  55. # Enable the use of the new movietexture class.
  56. use-movietexture #t
  57. # The new version of panda supports hardware vertex animation, but it's not quite ready
  58. hardware-animated-vertices 0
  59. # Enable the model-cache, but only for models, not textures.
  60. model-cache-dir $THIS_PRC_DIR/../modelcache
  61. model-cache-textures #f
  62. # Limit the use of advanced shader profiles.
  63. # Currently, advanced profiles are not reliable under Cg.
  64. basic-shaders-only #t