Rename the main folder

This commit is contained in:
2024-05-16 22:12:11 +02:00
parent 814e158eb5
commit 9cbe89e4b8
12 changed files with 10 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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):
return {'FINISHED'}