Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Hi, I wrote this to help with cluster weighting using hot keys. please use/modify at your own risk.
#first put naNudgeWeight.py in your maya python scripts folder import naNudgeWeight reload(naNudgeWeight)
#this is needed to tell what is the cluster to be painted naNudgeWeight.InitSimpleWindow()
#these two lines can be used as a hot key to add weight, the amount 0.1 can be customized, 1 max, 0 no weight nudge = naNudgeWeight.NudgeCluster() nudge.nudge(0.1)
#this can be used as a hotkey to remove weight nudge = naNudgeWeight.NudgeCluster() nudge.nudge(-0.1)
#this can be used as a hotkey to smooth weight nudge = naNudgeWeight.NudgeCluster() nudge.smooth()
please note when you’re done with the tool just run naNudgeWeight.removeAllTagging() #so there is no naNudge attribute on any clusters
Happy Sculpting! Nate
Please use the Bug System to report any bugs.
Please use the Feature Requests to give me ideas.
Please use the Support Forum if you have any questions or problems.
Please rate and review in the Review section.