Skip to content

Commit

Permalink
Splitting out UV tools, actually including sync py, and reusing blend…
Browse files Browse the repository at this point in the history
…er props under materials
  • Loading branch information
TheDuckCow committed Sep 26, 2020
1 parent 64c9873 commit 57d090f
Show file tree
Hide file tree
Showing 4 changed files with 570 additions and 352 deletions.
16 changes: 11 additions & 5 deletions MCprep_addon/load_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,26 @@
else:
from .materials import prep

if "skin" in locals():
importlib.reload(skin)
else:
from .materials import skin

if "sequences" in locals():
importlib.reload(sequences)
else:
from .materials import sequences

if "skin" in locals():
importlib.reload(skin)
else:
from .materials import skin

if "sync" in locals():
importlib.reload(sync)
else:
from .materials import sync

if "uv_tools" in locals():
importlib.reload(uv_tools)
else:
from .materials import uv_tools

if "spawn_util" in locals():
importlib.reload(spawn_util)
else:
Expand Down Expand Up @@ -125,6 +130,7 @@
skin,
sequences,
sync,
uv_tools,
spawn_util,
meshswap,
mobs,
Expand Down
Loading

0 comments on commit 57d090f

Please sign in to comment.