mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
Added 24 USDA test files covering scalar and array timesamples syntax: Scalar types (15 tests): - bool, int, uint, int64, uint64 - half, float, double - token, assetpath - vec2f, vec3f, vec4f, quatf, matrix4d Array types (9 tests): - bool[], int[], float[], double[], token[] - vec2f[], vec3f[], vec4f[], quatf[] Also added corresponding USDC binary format files generated via usdcat. Each test follows a simple template with single Prim and Attribute with 2-3 keyframes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
#usda 1.0
|
|
|
|
def Xform "test_vec2f_array"
|
|
{
|
|
float2[] uvs.timeSamples = {
|
|
0: [(0.0, 0.0), (1.0, 0.0), (1.0, 1.0)],
|
|
10: [(0.5, 0.5)],
|
|
20: [(0.0, 1.0), (1.0, 1.0)],
|
|
}
|
|
}
|