mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
fixed printObjectCount formatting
This commit is contained in:
parent
1e5fdf94f6
commit
c09c16735a
@ -94,15 +94,15 @@ class DoCollectionManager:
|
|||||||
count2classes[count].sort()
|
count2classes[count].sort()
|
||||||
for name in count2classes[count]:
|
for name in count2classes[count]:
|
||||||
print '%s %s' % (count, name)
|
print '%s %s' % (count, name)
|
||||||
|
print ''
|
||||||
|
|
||||||
def printObjectCount(self):
|
def printObjectCount(self):
|
||||||
# print object counts by distributed object type
|
# print object counts by distributed object type
|
||||||
print '==== OBJECT DUMP ===='
|
print '==== OBJECT COUNT ===='
|
||||||
if self.hasOwnerView():
|
if self.hasOwnerView():
|
||||||
print '== doId2do'
|
print '== doId2do'
|
||||||
self._printObjects(self.getDoTable(ownerView=False))
|
self._printObjects(self.getDoTable(ownerView=False))
|
||||||
if self.hasOwnerView():
|
if self.hasOwnerView():
|
||||||
print ''
|
|
||||||
print '== doId2ownerView'
|
print '== doId2ownerView'
|
||||||
self._printObjects(self.getDoTable(ownerView=True))
|
self._printObjects(self.getDoTable(ownerView=True))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user