Clarify print

This commit is contained in:
Lubos Lenco 2017-12-03 13:28:30 +01:00
parent 67ecc92082
commit b82c87d446
2 changed files with 2 additions and 2 deletions

View file

@ -2008,7 +2008,7 @@ class ArmoryExporter:
for bobject in group.objects:
if bobject.parent == None and bobject.arm_export:
# Add external linked objects
if bobject.name not in scene_objects:
if bobject.name not in scene_objects: # and bobject.ls_linked
self.process_bobject(bobject)
self.export_object(bobject, self.scene)
o['object_refs'].append(arm.utils.asset_name(bobject))

View file

@ -1360,7 +1360,7 @@ class ArmPrintTraitsButton(bpy.types.Operator):
bl_label = 'Print Traits'
def execute(self, context):
for s in bpy.data.scenes:
print(s.name)
print(s.name + ' traits:')
for o in s.objects:
for t in o.arm_traitlist:
tname = t.nodes_name_prop if t.type_prop == 'Logic Nodes' else t.class_name_prop