From ff6f62b0cb68b1a96ac4dc3714b52d6b730f6c02 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 15 Jun 2005 04:48:24 +0000 Subject: [PATCH] changed shadow collision loop priority --- direct/src/showbase/ShowBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/showbase/ShowBase.py b/direct/src/showbase/ShowBase.py index 4d2f6989e0..33c85fc078 100644 --- a/direct/src/showbase/ShowBase.py +++ b/direct/src/showbase/ShowBase.py @@ -1217,7 +1217,7 @@ class ShowBase(DirectObject.DirectObject): self.taskMgr.add(self.collisionLoop, 'collisionLoop', priority = 30) # do the shadowCollisionLoop after the collisionLoop and # 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, # so that it will get run after most tasks self.taskMgr.add(self.igLoop, 'igLoop', priority = 50)