Using usdSkel

I have tried to add usdSkel in the connector to get/set the skeleton info from the model.
I have add the skeleton.h file in the last and

It doesn’t show any error by writing code.
But when I build the code, there are some link errors.

How can I using the usdSkel without these link error.
And is there any usdSkel example, what I can reference?

Thanks a lot!

We will probably be adding a UsdSkel example in the sample soon, but you should be able to fix your issue by adding the usdSkel library to the usdlibs array in the premake5.lua build configuration file.

    local usdlibs = {
        "ar",
        ...
        "usdShade",
        "usdSkel", <----------
        "usdUtils",
        ...
    }
1 Like