-
-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Labels
Description
Currently TinyUSDZ's Attribute/Property implementation does not allow having multiple values(the first wins)
USD's Attribute can have multiple values(default value, timeSamples and connection)
https://lucascheller.github.io/VFX-UsdSurvivalGuide/core/elements/animation.html
we need to support a syntax like this.
This would change TinyUSDZ's API
def Cube "Cube" (
)
{
double size = 15
double size.timeSamples = {
1001: 1,
1010: 10,
}
double size.connection = </path/to/value>
}
Reactions are currently unavailable