config.in 2.8 KB

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