cpichard / usdtweak

Universal Scene Description standalone editor
Apache License 2.0
232 stars 23 forks source link
feature-animation imgui openusd pixar-usd universal-scene-description usd usdz vfx vfx-pipeline

usdtweak

usdtweak is a free and open source editor for Pixar's USD format. The project is in alpha stage, but usdtweak can already be used for small and simple tasks like cleaning assets, creating and editing layers, inspecting and fixing existing usd stages.

This project is written in C++ and is made possible by ImGUI for the UI and GLFW for the windowing system.

Sneak peek

https://github.com/cpichard/usdtweak/assets/300243/3f34cd6f-de84-428f-9569-a1ac3bd61206

Status

There is no roadmap, it is a side project and the development is slow and unpredictable, I can only work on it a few hours during the week-end, but anyone wanting to contribute is welcome. The original idea behind this project was to improve usdview by adding edition capabilities, for artists, technical directors and users who don't necessarily know the USD ascii syntax or are not familiar with python. So my current goal driving the developments is to provide at least the same functionalities as usdview with some ability to edit the stages and layers.

As of today usdtweak allows

If you want to try usdtweak without the burden of compiling it, you can download the latest windows installer here https://github.com/cpichard/usdtweak/releases. Feel free to reach out if you have feedbacks.

You can also build usdtweak, here are the instructions to do so.

Building

Requirement

The project is almost self contained and only needs:

If you built USD, compiling usdtweak should be easy, you need to provide cmake with only 1 required variables:

Unfortunately if you have compiled USD >= 22.08 with MaterialX you will also need to provide:

Compiling on linux

On linux it should compile with:

git clone https://github.com/cpichard/usdtweak
cd usdtweak
git checkout develop
mkdir build
cd build
cmake -Dpxr_DIR=/path/to/usd-23.11 ..
make

If you have USD >= 22.08 compiled with MaterialX, cmake becomes:

cmake -Dpxr_DIR=/path/to/usd-23.11 -DMaterialX_DIR=/path/to/usd-23.11/lib/cmake/MaterialX ..

Compiling on MacOs

It compiles on MacOS Mojave. The viewport is now enabled for versions of USD superior or equal to 22.08, otherwise it is deactivated because the OpenGL version is not supported on MacOS;

git clone https://github.com/cpichard/usdtweak
cd usdtweak
git checkout develop
mkdir build
cd build
cmake -Dpxr_DIR=/path/to/usd-23.11 ..
make

If you have USD >= 22.08 compiled with MaterialX, cmake becomes:

cmake -Dpxr_DIR=/path/to/usd-23.11 -DMaterialX_DIR=/path/to/usd-23.11/lib/cmake/MaterialX ..

Compiling on Windows

It should compile successfully on Windows 10 with MSVC 19 or 17 using the RelWithDbInfo config. Make sure you open/use the x64 Native Tools commands prompt before typing the following commands:

git clone https://github.com/cpichard/usdtweak
cd usdtweak
git checkout develop
mkdir build
cd build
cmake  -G "Visual Studio 16 2019" -A x64 -Dpxr_DIR=C:\path\to\usd-23.11 ..
cmake --build . --config RelWithDebInfo

If you have USD >= 22.08 compiled with MaterialX, you have to add an additional MaterialX_DIR variable to the cmake command, pointing to the MaterialX directory:

cmake  -G "Visual Studio 16 2019" -A x64 -Dpxr_DIR=C:\path\to\usd-22.08 -DMaterialX_DIR=C:\path\to\usd-22.08\lib\cmake\MaterialX ..

Using NVidia's USD build (experimental)

NVidia provides a USD build here if you don't want to compile USD yourself. It needs either VisualStudio 2017 or a more recent version (2019, 2022) with the "MSVC141 - C++ build tools x86/x64" installed. The cmake commands to build usdtweak differ, if you have a more recent version you'll need to specify the toolkit using -T v141. The Nvidia USD build also needs Python3.7, set the USE_PYTHON3 argument to force cmake to look after Python3, but you'll have to make sure Python3.7 is installed already.

cmake  -G "Visual Studio 16 2019" -T v141 -A x64 -Dpxr_DIR=C:\path\to\nvidia-usd-22.11 -DMaterialX_DIR=C:\path\to\nvidia-usd-22.11\lib\cmake\MaterialX -DUSE_PYTHON3=ON ..
cmake --build . --config Release

Using Houdini's USD build (experimental, only Win10 and Houdini20)

First make sure there is no USD and Python path in the environment variables. Open a houdini command line shell, inside the shell, create a build directory, like in the previous example then run the cmake command pointing pxr_DIR to the cmake\houdini subdirectory.

cmake -Dpxr_DIR=<USDTWEAK_DIR>\cmake\houdini ..
cmake --build . --config RelWithDebInfo

(Replace with the directory pointing to the usdtweak project)

Installing on Windows

You can install usdtweak with its dependencies on windows, it copies the required files in a directory with the following command:

cmake --install . --prefix <where_you_want_to_install_usdtweak> --config RelWithDebInfo

Note that it is not really tested on anything else than my machine/setup so it might not work for you, feel free to get in touch if you have any issue.

Creating a Windows installer

There is an experimental packaging system using cpack/NSIS on windows which creates an installer. You have to make sure the nsis application is available on you system, you can download it from here NSIS. The command to create the installer is then:

cmake --build . --target package --config RelWithDebInfo

Compiling with your version of glfw

usdtweak is using GLFW for its windowing system. cmake should normally download, compile and install glfw without any user intervention. However, if you already have a compiled version you want to use instead, and you'll need to disable the automatic build of glfw, by passing an additional cmake variable:

A cmake command will then look like:

cmake  -G "Visual Studio 16 2019" -A x64 -Dpxr_DIR=C:\path\to\usd-21.11 -Dglfw3_DIR=C:\path\to\glfw3-3.3.6\lib\cmake\glfw3 ..

Contributing

All contributions are really welcome. To contribute you can make a Pull Request from your fork. This video explains the process of forking and creating pull requests.

Known issues

Contact

If you want to know more, or have any issues, questions, drop me an email: cpichard.github@gmail.com