Changeset View
Changeset View
Standalone View
Standalone View
io_shape_mdd/__init__.py
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| obj = context.active_object | obj = context.active_object | ||||
| return (obj and obj.type == 'MESH') | return obj and obj.type == 'MESH' | ||||
| def invoke(self, context, event): | def invoke(self, context, event): | ||||
| scene = context.scene | scene = context.scene | ||||
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| obj = context.active_object | obj = context.active_object | ||||
| return (obj and obj.type == 'MESH') | return obj and obj.type == 'MESH' | ||||
| def invoke(self, context, event): | def invoke(self, context, event): | ||||
| scene = context.scene | scene = context.scene | ||||
| Context not available. | |||||