Skip to content

Installing Quick Sweep Mesh

Mirror Tool 1

Step 1 - Setting up

  • Setting up


    1.Unzip the Quick_Sweep_Mesh.zip file.

    2.Copy-paste the quick_sweep.py file in your \Documents\Maya\Scripts folder.

    Info - quick_sweep folder

    When unziping the zip file there's a quick_sweep folder containing the documentation as a pdf and an icon to use on your shelf.

    You could copy paste the folder in your \Documents\Maya\XXXX\Prefs\Icons folder but its not necessary as the tool will now point towards the online documentation.

    It would only be necessary as a backup if your internet was down or if you wanted to use the icon.

    3.Open Maya.

Step 2 - Activating (UI Window)

  • Python Code


    Copy the 2 python lines below to a shelf or bind these to a hotkey to load the UI Window of the tool.

    1
    2
    from quick_sweep import OpenImportDialog
    OpenImportDialog.show_dialog()  
    

Step 3 - Activating Hotkey

  • Python Code


    Copy the 2 python lines below to a hotkey to get the best user experience.

    1
    2
    from quick_sweep import OpenImportDialog
    q_sweep = OpenImportDialog().sweep_operation()
    

Click the button below to learn how to create hotkeys and shelf buttons.

Creating Hotkeys/Shelf Buttons