Text annotation can now extract dynamic variables from IFC data

This commit is contained in:
Dion Moult
2020-05-04 12:20:34 +10:00
parent dce5c40007
commit 3ce71e855f
6 changed files with 109 additions and 17 deletions
+14 -1
View File
@@ -626,9 +626,10 @@ class BIM_PT_camera(Panel):
row = layout.row()
row.prop(dprops, 'should_recut')
row = layout.row()
row.prop(dprops, 'should_render')
row = layout.row()
row.prop(dprops, 'should_extract')
row = layout.row()
row.prop(props, 'is_nts')
@@ -663,6 +664,18 @@ class BIM_PT_text(Panel):
row = layout.row()
row.prop(props, 'symbol')
row = layout.row()
row.operator('bim.add_variable')
for index, variable in enumerate(props.variables):
row = layout.row(align=True)
row.prop(variable, 'name')
row.operator('bim.remove_variable', icon='X', text='').index = index
row = layout.row()
row.prop(variable, 'global_id')
row = layout.row()
row.prop(variable, 'prop_key')
class BIM_PT_owner(Panel):
bl_label = "Owner History"