Animation — Aspose.3D FOSS for Java
Overview
The animation subsystem in Aspose.3D FOSS for Java provides the AnimationClip class as a named container for an animation range within a scene.
Package: com.aspose.threed
Note: In the current FOSS release, keyframe data storage and playback are declaration stubs (
throw new UnsupportedOperationException).AnimationClipobjects can be created and attached to aScene, but runtime animation evaluation is not implemented.
Classes
| Class | Description |
|---|---|
AnimationClip | Named container for an animation range. A Scene may hold multiple clips (e.g., "Walk", "Run"). Access via scene.getAnimationClips(). |
Usage
import com.aspose.threed.Scene;
import com.aspose.threed.AnimationClip;
Scene scene = new Scene();
// List animation clips loaded from a file
for (AnimationClip clip : scene.getAnimationClips()) {
System.out.println("Clip: " + clip.getName());
}