Author: Andrew Kin Fun Chan
Email: AndrewChan1985@gmail.com
Date: Febuary 2014
Version: 1.1
Compatibility: Maya 2014
______________________________________________________________________________________________________
______________________________________________________________________________________________________
INSTALLATION INSTRUCTIONS:
1) Copy or move the "andrewc" folder into a Maya source script directory. If an "andrewc" folder exists, copy the contents of the folder to the existing folder.
Script Directory Example:
C:\Users\username\Documents\maya\2014-x64\scripts
If you don't know what your source script directories are, run the below code in a Python tab in Maya.
It will return a list of all the folders that Maya is sources.
import sys
for s in sys.path:
print s
2) After it is copied, to run the script, copy and paste the below code into a Python tab in Maya.
To have it auto select all the clusters after creating them:
import andrewc.clusterEdgeLoop.clusterEdgeloop as clusterEdge
reload(clusterEdge)
clusterEdge.clusterEdgeLoop (edges = None, sel = 1)
To have it only create the clusters. Does not select them afterwards:
import andrewc.clusterEdgeLoop.clusterEdgeloop as clusterEdge
reload(clusterEdge)
clusterEdge.clusterEdgeLoop (edges = None, sel = 0)
______________________________________________________________________________________________________
______________________________________________________________________________________________________
Updates:
___
v1.0* First release
___
v1.1* Added function to auto select all the clusters after creation of all clusters.
______________________________________________________________________________________________________
______________________________________________________________________________________________________
DESCRIPTION:
Cluster Edge Loop works on Windows/Linux/MAC.
Select an edge ring and run the code.
Functions:
1. Loops through the edge selection to get the edgeloop and attach a cluster to each loop.
2. Ability to auto select all the clusters after creation.
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.