__init__.py 462 B

123456789101112
  1. """
  2. This package contains modules to quickly set up a Panda environment for
  3. quick prototyping in the interactive Python shell. Merely importing
  4. one of these modules will create a :class:`.ShowBase` instance, opening
  5. a graphical window and setting up the scene graph.
  6. The most commonly used module from this package is :mod:`.DirectStart`,
  7. importing which executes the following code::
  8. from direct.showbase.ShowBase import ShowBase
  9. base = ShowBase()
  10. """