assimp/contrib/tinyusdz/tinyusdz_repo/python/test.py

9 lines
247 B
Python
Raw Normal View History

2024-03-30 02:33:07 +00:00
from tinyusdz import Usd, UsdGeom, Sdf
stage = Usd.Stage.CreateNew('hello.usda')
UsdGeom.SetStageUpAxis(stage, UsdGeom.Tokens.y)
xformPrim = UsdGeom.Xform.Define(stage, '/hello')
attr = xformPrim.CreateAttribute("test", Sdf.ValueTypeNames.Int)