Add AI-enabled web 2.0 hypermedia API generate digital twin button

This commit is contained in:
Dion Moult
2019-12-20 10:43:39 +11:00
parent 4bb5248593
commit 782b10fbde
3 changed files with 13 additions and 0 deletions
@@ -851,3 +851,11 @@ class CreateSheets(bpy.types.Operator):
sheet_builder.data_dir = bpy.context.scene.BIMProperties.data_dir
sheet_builder.build()
return {'FINISHED'}
class GenerateDigitalTwin(bpy.types.Operator):
bl_idname = 'bim.generate_digital_twin'
bl_label = 'Generate Digital Twin'
def execute(self, context):
# Does absolutely nothing at all :D
return {'FINISHED'}