AnimationClip — Aspose.3D FOSS for .NET
Overview
AnimationClip is a named container for an animation range. A Scene may hold multiple clips (e.g., “Walk”, “Run”). Clips are created and retrieved via Scene.CreateAnimationClip() and Scene.GetAnimationClip().
Note: Keyframe data and playback are not yet implemented in the FOSS edition. The clip creation and lookup API is functional.
using Aspose.ThreeD;
var scene = new Scene();
var clip = scene.CreateAnimationClip("Walk");
var found = scene.GetAnimationClip("Walk");
Console.WriteLine("Found: " + (found != null));Properties
| Name | Type | Access | Description |
|---|---|---|---|
Name | string | get/set | Name of the animation clip |