示例#1
0
 def execute(self, context):
     startLog(self)
     mass = generalUtils.calculateSum(bpy.context.selected_objects, 'mass')
     log("The calculated mass is: " + str(mass), "INFO")
     endLog()
     return {'FINISHED'}
示例#2
0
 def execute(self, context):
     startLog(self)
     mass = generalUtils.calculateSum(bpy.context.selected_objects, 'mass')
     log("The calculated mass is: " + str(mass), "INFO")
     endLog()
     return {'FINISHED'}
示例#3
0
 def execute(self, context):
     mass = gUtils.calculateSum(context.selected_objects, 'mass')
     log("The calculated mass is: " + str(mass), "INFO")
     return {'FINISHED'}