mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
*** empty log message ***
This commit is contained in:
parent
76551bc5dc
commit
f6c5e1059b
4
direct/src/showbase/ParticleManagerGlobal.py
Normal file
4
direct/src/showbase/ParticleManagerGlobal.py
Normal file
@ -0,0 +1,4 @@
|
||||
"""ParticleManagerGlobal module: contains the global particle system manager"""
|
||||
import ParticleSystemManager
|
||||
|
||||
particleMgr = ParticleSystemManager.ParticleSystemManager()
|
4
direct/src/showbase/PhysicsManagerGlobal.py
Normal file
4
direct/src/showbase/PhysicsManagerGlobal.py
Normal file
@ -0,0 +1,4 @@
|
||||
"""PhysicsManagerGlobal module: contains the global physics manager"""
|
||||
import PhysicsManager
|
||||
|
||||
physicsMgr = PhysicsManager.PhysicsManager()
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user