Skip to content

matthewlow-dwa/NukeUsdPlugins

 
 

Repository files navigation

NukeUsdPlugins

This project implements a USD reader plugin for Nuke's ReadGeo node.

Building

The Nuke USD plug-in has the following dependencies:

We use the CMake find_package mechanism to set up dependencies. The USD package is called pxr. Set the pxr_DIR CMake variable to point CMake to your USD installation directory. Set BOOST_ROOT to point at your Boost installation.

Example build command using the Ninja generator:

cmake \
-G Ninja \
-D Nuke_DIR=<YOUR_NUKE_INSTALL_ROOT> \
-D pxr_DIR=<PATH_TO_USD_DIRECTORY> \
-D BOOST_ROOT=<PATH_TO_BOOST_DIRECTORY> \
-D TBB_DIR=<PATH_TO_TBB_DIRECTORY> \
-D OpenSubdiv_DIR=<PATH_TO_OPENSUBDIV> \
-D CMAKE_INSTALL_PREFIX=<YOUR_INSTALL_PREFIX> \
-D CMAKE_BUILD_TYPE=Release \
<USD_PLUGIN_SOURCE_DIRECTORY>

ninja install

Note: for MacOS, the root directory is where the FindNuke.cmake file is - for example: /Applications/Nuke13.1v1/Nuke13.1v1.app/Contents/MacOS .

To install, copy the UsdConverter shared library, the usdReader and the usdSceneReader plugin from CMAKE_INSTALL_PREFIX to your .nuke folder.

If the version of USD used by Nuke is different than the version these plugins are compiled with, it's necessary to make sure that the correct version of the PXR library is loaded. For example, by replacing the PXR libraries in the Nuke install, setting the library path in the environment or setting the rpath in the CMake file.

Project structure

Plugin subdirectory

This subdirectory contains the usdReader plugin sources, a specialization of the Nuke GeoReader class. The usdReader registers the USD file types so they are recognized by the ReadGeo node and creates knobs for setting loading options like the scene graph for choosing which primitives to load. The plugin does not contain any logic for converting USD geometry to Nuke's internal format. Instead it links to the UsdConverter shared library which encapsulates that functionality.

UsdConverter subdirectory

This subdirectory contains the UsdConverter shared library which converts USD to Nuke geometry and the SceneReader plugin which adds plugins for the Light, Camera, and Axis nodes. The UsdConverter API offers functions at various levels of abstraction, e.g. the usdReader plugin uses the high level function loadUsd() to add the geometry from a USD file into a Nuke GeometryList. It is divided into functions dealing with geometry (Mesh, Points, Cube, PointInstancer), geometry attributes (points, vertices, colors, ...) and scene graph knob initialization. Public API functions are marked wih the FN_USDCONVERTER_API export macro, everything else is hidden and used only internally.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 94.7%
  • CMake 4.5%
  • C 0.8%