Blender Plugin 1.6.0
This commit is contained in:
13
Blender/_Source/L1960_Tools_1_4_0/PrepareLods.py
Normal file
13
Blender/_Source/L1960_Tools_1_4_0/PrepareLods.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import bpy
|
||||
|
||||
class MESH_OT_prepare_lods_decimate(bpy.types.Operator):
|
||||
"""Copy current Mesh and apply decimate Modifier"""
|
||||
|
||||
bl_idname = "mesh.prepare_lods_decimate"
|
||||
bl_label = "Copy current Mesh and apply decimate Modifier"
|
||||
bl_options = {"REGISTER", "UNDO"}
|
||||
|
||||
def execute(self, context):
|
||||
|
||||
self.report({'INFO'}, 'Currently not in use')
|
||||
return {"FINISHED"}
|
||||
Reference in New Issue
Block a user