Users can now specify what objects to cut for documentation with presets

This commit is contained in:
Dion Moult
2020-08-11 13:52:16 +10:00
parent 114e835d4a
commit ef41daedb9
4 changed files with 21 additions and 2 deletions
@@ -416,6 +416,13 @@ class BIMCameraProperties(PropertyGroup):
view_name: StringProperty(name="View Name")
diagram_scale: EnumProperty(items=getDiagramScales, name='Diagram Scale')
is_nts: BoolProperty(name='Is NTS')
cut_objects: EnumProperty(items=[
('.IfcWall|.IfcSlab|.IfcCurtainWall|.IfcStair|.IfcStairFlight|.IfcColumn|.IfcBeam|.IfcMember|.IfcCovering',
'Overall Plan / Section', ''),
('.IfcElement', 'Detail Drawing', ''),
('CUSTOM', 'Custom', '')
], name='Cut Objects')
cut_objects_custom: StringProperty(name='Custom Cut')
class BIMTextProperties(PropertyGroup):