Animations
Define looping animations: move, rotation, float, scale-pulse, swing, orbit.
List Animations
const anims = await client.getAnimationBlocks('proj_123');
anims.forEach(a => console.log(a.name, a.type, a.speed));Create Animation
const anim = await client.createAnimationBlock('proj_123', {
type: 'float',
name: 'Hover Effect',
targetPartNames: ['product_body'],
axis: 'y',
speed: 0.4,
amplitude: 0.3,
easing: 'ease-in-out',
loopMode: 'ping-pong'
});
console.log(anim.id);Continue reading
Project SettingsRead and update the 140+ project settings covering display, branding, AR, e-commerce, email, and PDF.AssetsUpload, list, update, and delete 3D model, texture, and image assets.MaterialsCreate and manage PBR materials and their texture maps.CategoriesOrganize assets and materials into categories for filtering and bulk material blocks.
