This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pymel.core as pm | |
| # Fast and Dirty Mirror allows for an expanded version of the default Maya mirror tool. | |
| # Notable differences: | |
| # Rotate from manipulator pivot instead of object pivot. F&D Mirror uses the pivot you see on screen instead of the object pivot like in default Maya. | |
| # While this is not very different when selecting whole meshes, it is very impactful when trying to mirror individual faces or subcomponents of meshes | |
| # as it allows for use of the actual pivot on screen instead of the object's pivot which you can't see or manipulate unless you select the object itself. | |
| # | |
| # Rotation settings from the menu. Default Maya mirror requires you to go into the manipulator tool to modify the rotation. Here you can set a fixed value. | |
| # Does not support making the mirror an individual instance or copy |