Go to file
2024-10-01 19:48:12 +08:00
images Initial commit 2024-10-01 19:48:12 +08:00
include Initial commit 2024-10-01 19:48:12 +08:00
meshChecker Initial commit 2024-10-01 19:48:12 +08:00
uvChecker Initial commit 2024-10-01 19:48:12 +08:00
uvOverlapChecker Initial commit 2024-10-01 19:48:12 +08:00
.gitignore Initial commit 2024-10-01 19:48:12 +08:00
CMakeLists.txt Initial commit 2024-10-01 19:48:12 +08:00
LICENSE.md Initial commit 2024-10-01 19:48:12 +08:00
README.md Initial commit 2024-10-01 19:48:12 +08:00

CheckTools

Mesh/UV check commands for maya

meshChecker

Mesh/Topology checker

uvChecker

General UV checker

findUvOverlaps

UV overlap checker based on the BentleyOttmann 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