فهرست منبع

*** empty log message ***

Mike Goslin 25 سال پیش
والد
کامیت
f6c5e1059b
3فایلهای تغییر یافته به همراه13 افزوده شده و 0 حذف شده
  1. 4 0
      direct/src/showbase/ParticleManagerGlobal.py
  2. 4 0
      direct/src/showbase/PhysicsManagerGlobal.py
  3. 5 0
      direct/src/showbase/ShowBase.py

+ 4 - 0
direct/src/showbase/ParticleManagerGlobal.py

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

+ 4 - 0
direct/src/showbase/PhysicsManagerGlobal.py

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

+ 5 - 0
direct/src/showbase/ShowBase.py

@@ -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()