How to determine the object of an animation frame sequence?
var bindPoints = node.Scene.AnimationClips[0]?.Animations[0]?.BindPoints;
foreach (var bp in bindPoints)
{
Console.WriteLine($"=== {bp.Name} ===");
st…...chou March 24, 2026, 1:51am 2 @LuoHui You can use BindPoint...version. LuoHui March 24, 2026, 2:37am 3 Understood, thanks for...