Changeset View
Changeset View
Standalone View
Standalone View
object_cloud_gen.py
| Context not available. | |||||
| if not context.active_object: | if not context.active_object: | ||||
| return False | return False | ||||
| else: | else: | ||||
| return (context.active_object.type == 'MESH') | return context.active_object.type == 'MESH' | ||||
| def execute(self, context): | def execute(self, context): | ||||
| # Prevent unsupported Execution in Local View modes | # Prevent unsupported Execution in Local View modes | ||||
| Context not available. | |||||