Skip to content

Commit

Permalink
Merge pull request #211 from SpectralVectors/fabex-ui-patch-2
Browse files Browse the repository at this point in the history
UI Patch #2
  • Loading branch information
pppalain authored Nov 5, 2024
2 parents d740161 + 159979f commit 3718521
Show file tree
Hide file tree
Showing 28 changed files with 1,480 additions and 521 deletions.
22 changes: 12 additions & 10 deletions scripts/addons/cam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@
PathExportChain,
timer_update,
)
from .pack import PackObjectsSettings

# from .pack import PackObjectsSettings
from .preferences import CamAddonPreferences
from .preset_managers import (
AddPresetCamCutter,
Expand All @@ -99,7 +100,8 @@
CAM_MACHINE_MT_presets,
CAM_OPERATION_MT_presets,
)
from .slice import SliceObjectsSettings

# from .slice import SliceObjectsSettings
from .ui import register as ui_register, unregister as ui_unregister
from .ui.panels.interface import CAM_INTERFACE_Properties
from .utils import (
Expand Down Expand Up @@ -171,7 +173,7 @@
PathExport,
PathExportChain,
# .pack
PackObjectsSettings,
# PackObjectsSettings,
# .preferences
CamAddonPreferences,
# .preset_managers
Expand All @@ -182,7 +184,7 @@
AddPresetCamOperation,
AddPresetCamMachine,
# .slice
SliceObjectsSettings,
# SliceObjectsSettings,
]


Expand Down Expand Up @@ -223,12 +225,12 @@ def register() -> None:
scene.cam_operations = CollectionProperty(
type=camOperation,
)
scene.cam_pack = PointerProperty(
type=PackObjectsSettings,
)
scene.cam_slice = PointerProperty(
type=SliceObjectsSettings,
)
# scene.cam_pack = PointerProperty(
# type=PackObjectsSettings,
# )
# scene.cam_slice = PointerProperty(
# type=SliceObjectsSettings,
# )
scene.cam_text = StringProperty()
scene.interface = PointerProperty(
type=CAM_INTERFACE_Properties,
Expand Down
Loading

0 comments on commit 3718521

Please sign in to comment.