CM3D2 Converter.misc_VIEW3D_PT_tools_mesh_shapekey
class VIEW3D_PT_tools_mesh_shapekey(bpy.types.Panel): bl_label = "シェイプキーツール" bl_idname = 'VIEW3D_PT_tools_mesh_shapekey' bl_region_type = 'TOOLS' bl_space_type = 'VIEW_3D' bl_category = 'Tools' bl_context = 'mesh_edit'
def draw(self, context):
pass
1# 「3Dビュー」エリア → 「メッシュエディット」モード → ツールシェルフ → 「シェイプキーツール」パネル 2 3""" 4class VIEW3D_PT_tools_mesh_shapekey(bpy.types.Panel): 5 bl_label = "シェイプキーツール" 6 bl_idname = 'VIEW3D_PT_tools_mesh_shapekey' 7 bl_region_type = 'TOOLS' 8 bl_space_type = 'VIEW_3D' 9 bl_category = 'Tools' 10 bl_context = 'mesh_edit' 11 12 def draw(self, context): 13 pass 14"""