Changeset View
Changeset View
Standalone View
Standalone View
animation_add_corrective_shape_key.py
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| return context.active_object != None | return context.active_object is not None | ||||
| def execute(self, context): | def execute(self, context): | ||||
| selection = context.selected_objects | selection = context.selected_objects | ||||
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| return context.active_object != None | return context.active_object is not None | ||||
| def execute(self, context): | def execute(self, context): | ||||
| selection = context.selected_objects | selection = context.selected_objects | ||||
| Context not available. | |||||