|
| | aspect2d = render2d.attachNewNode(PGTop("aspect2d")) |
| | The root of the 2-D scene graph used for GUI rendering.
|
| |
| | cpMgr = ConfigPageManager.getGlobalPtr() |
| | See :meth:panda3d.core.ConfigPageManager.getGlobalPtr().
|
| |
| | cvMgr = ConfigVariableManager.getGlobalPtr() |
| | See :meth:panda3d.core.ConfigVariableManager.getGlobalPtr().
|
| |
| | globalClock = ClockObject.getGlobalClock() |
| | The clock object used by default for rendering and animation, obtained using :meth:panda3d.core.ClockObject.getGlobalClock().
|
| |
| | hidden = NodePath("hidden") |
| | A dummy scene graph that is not being rendered by anything.
|
| |
| | inspect |
| |
| | ostream = Notify.out() |
| | The default Panda3D output stream for notifications and logging, as obtained using :meth:panda3d.core.Notify.out().
|
| |
| | pandaSystem = PandaSystem.getGlobalPtr() |
| | See :meth:panda3d.core.PandaSystem.getGlobalPtr().
|
| |
| | render2d = NodePath("render2d") |
| | The root of the 2-D scene graph.
|
| |
| | vfs = VirtualFileSystem.getGlobalPtr() |
| | The global instance of the :ref:virtual-file-system, as obtained using :meth:panda3d.core.VirtualFileSystem.getGlobalPtr().
|
| |
This module serves as a container to hold the global
:class:`~.ShowBase.ShowBase` instance, as an alternative to using the builtin
scope.
Many of the variables contained in this module are also automatically written
to the :mod:`builtins` module when ShowBase is instantiated, making them
available to any Python code. Importing them from this module instead can make
it easier to see where these variables are coming from.
Note that you cannot directly import :data:`~builtins.base` from this module
since ShowBase may not have been created yet; instead, ShowBase dynamically
adds itself to this module's scope when instantiated.