Config.prc 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # The following (or similar) should go in ~/Config.prc
  2. # Uncomment one of the following lines to choose whether you should
  3. # run using OpenGL or DirectX rendering.
  4. load-display pandagl
  5. #load-display pandadx8
  6. # These control the placement and size of the default rendering window.
  7. win-origin 100 0
  8. win-size 800 600
  9. # Uncomment this line if you want to run Panda fullscreen instead of
  10. # in a window.
  11. #fullscreen #t
  12. # This will be used for sample programs with networking
  13. dc-file sample.dc
  14. # Windows ships with a software OpenGL driver; if you have not
  15. # installed an OpenGL driver for your graphics card you may be able to
  16. # run OpenGL in software only.
  17. # If you don't object to running OpenGL in software leave the keyword
  18. # "software" in the following line, otherwise remove it to force
  19. # hardware only.
  20. framebuffer-mode rgba double-buffer depth multisample hardware software
  21. # These control the amount of output Panda gives for some various
  22. # categories. The severity levels, in order, are "spam", "debug",
  23. # "info", "warning", and "fatal"; the default is "info". Uncomment
  24. # one (or define a new one for the particular category you wish to
  25. # change) to control this output.
  26. #notify-level-audio debug
  27. #notify-level-glgsg debug
  28. #notify-level-gobj warning
  29. # These specify where model files may be loaded from. You probably
  30. # want to set this to a sensible path for yourself. $THIS_PRC_DIR is
  31. # a special variable that indicates the same directory as this
  32. # particular Config.prc file.
  33. model-path .
  34. model-path $THIS_PRC_DIR/..
  35. sound-path .
  36. sound-path $THIS_PRC_DIR/..
  37. texture-path .
  38. texture-path $THIS_PRC_DIR/..
  39. # This makes the egg loader available to load egg files.
  40. load-file-type pandaegg
  41. # If you have built pandatool, you may want to make this loader
  42. # available; it can load file types for which a converter has been
  43. # written in pandatool (for instance, MultiGen .flt, Maya, and
  44. # Lightwave) directly into Panda.
  45. # load-file-type ptloader
  46. # Enable audio using the FMod audio library by default:
  47. audio-library-name fmod_audio
  48. #audio-library-name miles_audio
  49. # This enable the automatic creation of a TK window when running
  50. # Direct.
  51. #want-directtools #t
  52. #want-tk #t