mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
8 lines
176 B
Python
8 lines
176 B
Python
|
"""PhysicsManagerGlobal module: contains the global physics manager"""
|
||
|
|
||
|
__all__ = ['physicsMgr']
|
||
|
|
||
|
from pandac.PandaModules import PhysicsManager
|
||
|
|
||
|
physicsMgr = PhysicsManager()
|