Skip to content

Commit

Permalink
Organize files
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Jul 21, 2024
1 parent e9a4201 commit 11fb074
Show file tree
Hide file tree
Showing 10 changed files with 855 additions and 189 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Family
*.lock
.ruff_cache/

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
328 changes: 164 additions & 164 deletions LICENSE

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions addon/LICENSE

Large diffs are not rendered by default.

19 changes: 16 additions & 3 deletions __init__.py → addon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
import bpy
from .modules import (
from .operators import (
DuplicateMoveHierarchy,
DuplicateMoveHierarchyLinked,
ShowDeleteMenu,
DeleteKeepChildrenTransformation,
DeleteHierarchy,
SelectAllHierarchy,
DeleteMenu,
FamilySettings,
)
from .menus import DeleteMenu
from .property_groups import FamilySettings

__all__ = [
"DuplicateMoveHierarchy",
"DuplicateMoveHierarchyLinked",
"ShowDeleteMenu",
"DeleteKeepChildrenTransformation",
"DeleteHierarchy",
"SelectAllHierarchy",
"DeleteMenu",
"FamilySettings",
"DeleteMenu",
]


added_keymaps: list[tuple[bpy.types.KeyMap, bpy.types.KeyMapItem]] = []

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 0 additions & 22 deletions modules/__init__.py

This file was deleted.

0 comments on commit 11fb074

Please sign in to comment.