mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 10:11:46 +00:00
27 lines
773 B
Python
27 lines
773 B
Python
|
|
import bpy
|
||
|
|
from blenderbim.bim.prop import StrProperty, Attribute
|
||
|
|
from blenderbim.bim.module.sequence.data import Data
|
||
|
|
from bpy.types import PropertyGroup
|
||
|
|
from bpy.props import (
|
||
|
|
PointerProperty,
|
||
|
|
StringProperty,
|
||
|
|
EnumProperty,
|
||
|
|
BoolProperty,
|
||
|
|
IntProperty,
|
||
|
|
FloatProperty,
|
||
|
|
FloatVectorProperty,
|
||
|
|
CollectionProperty,
|
||
|
|
)
|
||
|
|
|
||
|
|
|
||
|
|
class Task(PropertyGroup):
|
||
|
|
name: StringProperty(name="Name")
|
||
|
|
identification: StringProperty(name="Identification")
|
||
|
|
ifc_definition_id: IntProperty(name="IFC Definition ID")
|
||
|
|
|
||
|
|
|
||
|
|
class BIMTaskProperties(PropertyGroup):
|
||
|
|
is_editing: BoolProperty(name="Is Editing", default=False)
|
||
|
|
tasks: CollectionProperty(name="Available Library References", type=Task)
|
||
|
|
active_task_index: IntProperty(name="Active Task Index")
|