AnimationClip — Aspose.3D FOSS for .NET
Properties
AnimationClip là một container có tên cho một phạm vi hoạt hình. A Scene có thể chứa nhiều clip (ví dụ: “Walk”, “Run”). Các clip được tạo và truy xuất qua Scene.CreateAnimationClip() và Scene.GetAnimationClip().
Lưu ý: Dữ liệu keyframe và việc phát lại chưa được triển khai trong phiên bản FOSS. API tạo và tra cứu clip đang hoạt động.
using Aspose.ThreeD;
var scene = new Scene();
var clip = scene.CreateAnimationClip("Walk");
var found = scene.GetAnimationClip("Walk");
Console.WriteLine("Found: " + (found != null));Properties
| Properties | Properties | Properties | Properties |
|---|---|---|---|
Name | string | lấy/đặt | Tên của clip hoạt hình |