mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
*** empty log message ***
This commit is contained in:
parent
8acc30a68c
commit
44a9385936
@ -180,7 +180,13 @@ class ClientRepository(DirectObject.DirectObject):
|
||||
def handleDisable(self, di):
|
||||
# Get the DO Id
|
||||
doId = di.getArg(STUint32)
|
||||
# Make sure the object exists
|
||||
# disable it.
|
||||
self.disableDoId(doId)
|
||||
|
||||
return None
|
||||
|
||||
def disableDoId(self, doId):
|
||||
# Make sure the object exists
|
||||
if self.doId2do.has_key(doId):
|
||||
# Look up the object
|
||||
distObj = self.doId2do[doId]
|
||||
|
Loading…
x
Reference in New Issue
Block a user