Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcampos committed Jul 31, 2018
2 parents 844a932 + 3d5ae9d commit 06ddc26
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maya.SetupMscver()
env = excons.MakeBaseEnv()


version = (2, 6, 0)
version = (2, 6, 1)
versionstr = "%d.%d.%d" % version
platname = {"win32": "windows", "darwin": "osx"}.get(sys.platform, "linux")
outprefix = "platforms/%s/%s/%s/plug-ins" % (maya.Version(nice=True), platname, excons.arch_dir)
Expand Down
2 changes: 1 addition & 1 deletion mgear.status
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MGEAR_VERSION [2, 6, 0]
MGEAR_VERSION [2, 6, 1]
MGEAR_MAJMIN_VERSION 2.6

2 changes: 1 addition & 1 deletion scripts/mgear/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
sev_comment = 32

# gear version
VERSION = [2, 6, 0]
VERSION = [2, 6, 1]

##########################################################
# METHODS
Expand Down
3 changes: 2 additions & 1 deletion scripts/mgear/maya/animbits/crankTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ def add_frame_sculpt(layer_node, anim=False, keyf=[1, 0, 0, 1]):

for obj, bsn in zip(objs, bs_node):
dup = pm.duplicate(obj)[0]
bst_name = "_".join([obj.name(), frame_name])
# bst_name = "_".join([obj.name(), frame_name])
bst_name = "_".join([obj.stripNamespace(), frame_name])
pm.rename(dup, bst_name)
indx = bsn.weight.getNumElements()
pm.blendShape(bsn,
Expand Down

0 comments on commit 06ddc26

Please sign in to comment.