Skip to content

Commit

Permalink
Merge pull request #210 from SpectralVectors/fabex-ui-patch
Browse files Browse the repository at this point in the history
Fabex UI patch
  • Loading branch information
pppalain authored Nov 1, 2024
2 parents d66bf63 + ad135e8 commit e64bca4
Show file tree
Hide file tree
Showing 14 changed files with 1,093 additions and 498 deletions.
9 changes: 6 additions & 3 deletions scripts/addons/cam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from bpy_extras.object_utils import object_data_add

# Relative Imports - from 'cam' module
from . import basrelief
from .basrelief import DoBasRelief, ProblemAreas
from .cam_operation import camOperation
from .chain import (
camChain,
Expand Down Expand Up @@ -109,6 +109,9 @@


classes = [
# .basrelief
DoBasRelief,
ProblemAreas,
# .chain
opReference,
camChain,
Expand Down Expand Up @@ -188,7 +191,7 @@ def register() -> None:
bpy.utils.register_class(cls)

ui_register()
basrelief.register()

# .cam_operation - last to allow dependencies to register before it
bpy.utils.register_class(camOperation)

Expand Down Expand Up @@ -253,7 +256,7 @@ def unregister() -> None:
bpy.utils.unregister_class(cls)

ui_unregister()
basrelief.unregister()

bpy.utils.unregister_class(camOperation)

scene = bpy.types.Scene
Expand Down
Loading

0 comments on commit e64bca4

Please sign in to comment.