-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
66 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-512 Bytes
(100%)
PYProjects/skin_plus_plus/dccs/max/skin_plus_plus_pymxs_24000/skin_plus_plus_pymxs.pyd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
PYProjects/skin_plus_plus/dccs/maya/skin_plus_plus_pymaya_2022/skin_plus_plus_pymaya.pyd
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +0,0 @@ | ||
import sys | ||
|
||
# Required for access to SkinData class: | ||
from . import _skin_plus_plus_py | ||
|
||
executable = sys.executable | ||
if "3ds max" in executable: | ||
from ._skin_plus_plus_pymxs import get_data | ||
from ._skin_plus_plus_pymxs import get_vertex_positions | ||
from ._skin_plus_plus_pymxs import set_skin_weights | ||
|
||
else: | ||
raise RuntimeError(f"Unsupported executable: {executable}") | ||
|
||
|
||
from .core import export_skin_data | ||
from .core import import_skin_data | ||
|
||
__all__ = ( | ||
"export_skin_data", | ||
"get_vertex_positions", | ||
"get_data", | ||
"import_skin_data", | ||
"set_skin_weights" | ||
) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
#define FMT_HEADER_ONLY | ||
#include <fmt/format.h> | ||
#include <fmt/xchar.h> | ||
|
||
|
||
namespace py = pybind11; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters