mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-20 20:22:09 +00:00
23 lines
647 B
Python
23 lines
647 B
Python
import bpy
|
|
from . import ui, prop, operator
|
|
|
|
classes = (
|
|
operator.EnableEditingAttributes,
|
|
operator.DisableEditingAttributes,
|
|
operator.EditAttributes,
|
|
operator.GenerateGlobalId,
|
|
prop.BIMAttributeProperties,
|
|
ui.BIM_PT_object_attributes,
|
|
ui.BIM_PT_material_attributes,
|
|
)
|
|
|
|
|
|
def register():
|
|
bpy.types.Object.BIMAttributeProperties = bpy.props.PointerProperty(type=prop.BIMAttributeProperties)
|
|
bpy.types.Material.BIMAttributeProperties = bpy.props.PointerProperty(type=prop.BIMAttributeProperties)
|
|
|
|
|
|
def unregister():
|
|
del bpy.types.Object.BIMAttributeProperties
|
|
del bpy.types.Material.BIMAttributeProperties
|