├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .buildinfo ├── .nojekyll ├── _images │ └── reorderAttributesExample.png ├── _sources │ ├── index.rst.txt │ ├── modules.rst.txt │ ├── reorder_attributes.install.rst.txt │ ├── reorder_attributes.rst.txt │ ├── reorder_attributes.ui.rst.txt │ ├── reorder_attributes.utils.rst.txt │ ├── reorder_attributes.widgets.attribute.rst.txt │ └── reorder_attributes.widgets.rst.txt ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── classic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-3.1.0.js │ ├── jquery.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sidebar.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── genindex.html ├── index.html ├── modules.html ├── objects.inv ├── py-modindex.html ├── reorder_attributes.html ├── reorder_attributes.install.html ├── reorder_attributes.ui.html ├── reorder_attributes.utils.html ├── reorder_attributes.widgets.attribute.html ├── reorder_attributes.widgets.html ├── search.html └── searchindex.js ├── reorder-attributes.mel ├── reorder-attributes.mod └── scripts ├── reorder_attributes ├── __init__.py ├── install.py ├── ui.py ├── utils.py └── widgets │ ├── __init__.py │ └── attribute.py └── userSetup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/README.md -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_images/reorderAttributesExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_images/reorderAttributesExample.png -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.install.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.ui.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.ui.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.utils.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.widgets.attribute.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.widgets.attribute.rst.txt -------------------------------------------------------------------------------- /docs/_sources/reorder_attributes.widgets.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_sources/reorder_attributes.widgets.rst.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/reorder_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.html -------------------------------------------------------------------------------- /docs/reorder_attributes.install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.install.html -------------------------------------------------------------------------------- /docs/reorder_attributes.ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.ui.html -------------------------------------------------------------------------------- /docs/reorder_attributes.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.utils.html -------------------------------------------------------------------------------- /docs/reorder_attributes.widgets.attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.widgets.attribute.html -------------------------------------------------------------------------------- /docs/reorder_attributes.widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/reorder_attributes.widgets.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /reorder-attributes.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/reorder-attributes.mel -------------------------------------------------------------------------------- /reorder-attributes.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/reorder-attributes.mod -------------------------------------------------------------------------------- /scripts/reorder_attributes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/__init__.py -------------------------------------------------------------------------------- /scripts/reorder_attributes/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/install.py -------------------------------------------------------------------------------- /scripts/reorder_attributes/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/ui.py -------------------------------------------------------------------------------- /scripts/reorder_attributes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/utils.py -------------------------------------------------------------------------------- /scripts/reorder_attributes/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/widgets/__init__.py -------------------------------------------------------------------------------- /scripts/reorder_attributes/widgets/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/reorder_attributes/widgets/attribute.py -------------------------------------------------------------------------------- /scripts/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-reorder-attributes/HEAD/scripts/userSetup.py --------------------------------------------------------------------------------