CheckTools icon indicating copy to clipboard operation
CheckTools copied to clipboard

๐Ÿ’Š Mesh/UV check commands for Maya

CheckTools

Mesh/UV check commands for maya

meshChecker

Mesh/Topology checker

uvChecker

General UV checker

findUvOverlaps

UV overlap checker based on the Bentleyโ€“Ottmann algorithm

โš ๏ธ Warning โš ๏ธ

  • Be sure to check if a mesh has no unassigned UVs, otherwise maya clashes.

GUI

ModelCheckerForMaya

Build

Build requirements

C++11

Linux/MacOS

>git clone https://github.com/minoue/CheckTools
>cd CheckTools
>mkdir build
>cd build
>cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DMAYA_VERSION=2020 -DMAYA_ROOT_DIR=path_to_maya_directory ../
>cmake --build . --config Release --target install

Windows

eg. VS2019 and Maya2020

>git clone https://github.com/minoue/CheckTools
>cd CheckTools
>mkdir build
>cd build
>cmake -G "Visual Studio 16 2019" -DMAYA_VERSION=2020 -DMAYA_ROOT_DIR="C:\Program Files\Autodesk\Maya2020" ../
>cmake --build . --config Release --target install