config.in 3.1 KB

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