Browse Source

changed shadow collision loop priority

Dave Schuyler 20 years ago
parent
commit
ff6f62b0cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showbase/ShowBase.py

+ 1 - 1
direct/src/showbase/ShowBase.py

@@ -1217,7 +1217,7 @@ class ShowBase(DirectObject.DirectObject):
         self.taskMgr.add(self.collisionLoop, 'collisionLoop', priority = 30)
         self.taskMgr.add(self.collisionLoop, 'collisionLoop', priority = 30)
         # do the shadowCollisionLoop after the collisionLoop and
         # do the shadowCollisionLoop after the collisionLoop and
         # befor the igLoop:
         # befor the igLoop:
-        self.taskMgr.add(self.shadowCollisionLoop, 'shadowCollisionLoop', priority = 34)
+        self.taskMgr.add(self.shadowCollisionLoop, 'shadowCollisionLoop', priority = 45)
         # give the igLoop task a reasonably "late" priority,
         # give the igLoop task a reasonably "late" priority,
         # so that it will get run after most tasks
         # so that it will get run after most tasks
         self.taskMgr.add(self.igLoop, 'igLoop', priority = 50)
         self.taskMgr.add(self.igLoop, 'igLoop', priority = 50)