openusd 0.3.0

Rust native USD library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#usda 1.0
(
    defaultPrim = "Source"
)

def Xform "Source"
{
    double3 xformOp:translate = (1, 2, 3)
    uniform token[] xformOpOrder = ["xformOp:translate"]

    def Cube "Child"
    {
        color3f[] primvars:displayColor = [(0, 1, 0)]
    }
}