Files
tinyusdz/tests/usda/timesamples-array-vec2f-001.usda
Syoyo Fujita f3fb9015ed Add comprehensive timesamples test files for scalar and array types
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>
2025-10-26 02:21:35 +09:00

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)],
}
}