Advertisement
Guest User

Untitled

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