*** empty log message ***

This commit is contained in:
Mike Goslin 2001-01-17 19:39:59 +00:00
parent 76551bc5dc
commit f6c5e1059b
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,4 @@
"""ParticleManagerGlobal module: contains the global particle system manager"""
import ParticleSystemManager
particleMgr = ParticleSystemManager.ParticleSystemManager()

View File

@ -0,0 +1,4 @@
"""PhysicsManagerGlobal module: contains the global physics manager"""
import PhysicsManager
physicsMgr = PhysicsManager.PhysicsManager()

View File

@ -5,6 +5,8 @@ from MessengerGlobal import *
from TaskManagerGlobal import *
from EventManagerGlobal import *
from PythonUtil import *
#from ParticleManagerGlobal import *
#from PhysicsManagerGlobal import *
import Task
import EventManager
import math
@ -103,6 +105,9 @@ class ShowBase:
self.taskMgr = taskMgr
#self.particleMgr = particleMgr
#self.physicsMgr = physicsMgr
self.createAudioManager()
self.createRootPanel()
self.createStats()