forked from bartvdbraak/blender
22 lines
463 B
Python
22 lines
463 B
Python
|
|
def main(context):
|
|
for ob in context.scene.objects:
|
|
print(ob)
|
|
|
|
class SimpleOperator(bpy.types.Operator):
|
|
''''''
|
|
bl_idname = "object.simple_operator"
|
|
bl_label = "Simple Object Operator"
|
|
|
|
def poll(self, context):
|
|
return context.active_object != None
|
|
|
|
def execute(self, context):
|
|
main(context)
|
|
return ('FINISHED',)
|
|
|
|
bpy.ops.add(SimpleOperator)
|
|
|
|
if __name__ == "__main__":
|
|
bpy.ops.object.simple_operator()
|