Skip to content

Commit 0690d5e

Browse files
authored
v1.1.11
Bugfixing tool to properly paste weights on selected verts. Specifically: utils.py : updating addInfluences to not change any weights when influences are added. Adding transposeWeights, to reorder SkinChunk influence weights based on skinCluster influence order. core.py : updating setWeights to leverage the new utils.transposeWeights to sort SkinChunk weights in the same order as the influences on the skinCluster. Also raising more expections if 'selectVertsOnly' is set and operations would happen that would change the skinning. Various verbose logging formatting changes.
1 parent a4327b0 commit 0690d5e

3 files changed

Lines changed: 235 additions & 86 deletions

File tree

skinner/__init__.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,19 @@
5454
2022-07-18 : v1.1.10 : Updating validateInteractiveNormalization to get around
5555
edgcase error when running mc.skinPercent(skinCluster, normalize=True) on
5656
certain skinClusters.
57+
2024-06-04 : v1.1.11 : Bugfixing tool to properly paste weights on selected
58+
verts. Specifically:
59+
utils.py : updating addInfluences to not change any weights when influences
60+
are added. Adding transposeWeights, to reorder SkinChunk influence
61+
weights based on skinCluster influence order.
62+
core.py : updating setWeights to leverage the new utils.transposeWeights
63+
to sort SkinChunk weights in the same order as the influences on the
64+
skinCluster. Also raising more expections if 'selectVertsOnly' is set
65+
and operations would happen that would change the skinning. Various
66+
verbose logging formatting changes.
5767
"""
5868
__author__ = "Eric Pavey"
59-
__version__ = "1.1.10"
69+
__version__ = "1.1.11"
6070
__source__ = "https://github.com/AKEric/skinner"
6171
__documentation__ = "https://github.com/AKEric/skinner/blob/main/README.md"
6272
__licence__ = "https://github.com/AKEric/skinner/blob/main/LICENSE.md"

0 commit comments

Comments
 (0)