mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
Fixed function name
getChildren is expected in the MemoryExplorer and not getChildrenAsList getChildren is also more convenient to the rest of the p3d source
This commit is contained in:
parent
8696dcea2c
commit
78d14fcce3
@ -284,7 +284,7 @@ class MemoryExplorerItem:
|
|||||||
def getNumChildren(self):
|
def getNumChildren(self):
|
||||||
return len(self.children)
|
return len(self.children)
|
||||||
|
|
||||||
def getChildrenAsList(self):
|
def getChildren(self):
|
||||||
return self.children
|
return self.children
|
||||||
|
|
||||||
def getName(self):
|
def getName(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user