Files
Blender-Fange-Pipeline/Fange_Pipeline/operators/misc.py
T
2024-05-31 17:31:39 +02:00

16 lines
365 B
Python

import bpy
class MakeBasicCollision(bpy.types.Operator):
"""From selected mesh, make a collision object"""
bl_idname = 'graou.make_collision'
bl_label = 'Generate a collision from selected mesh'
@classmethod
def poll(cls, context):
return bpy.context.object
def execute(self, context):
# TODO
return {'FINISHED'}