Fix ADV and BUNKI animation polish

This commit is contained in:
gamer147
2026-07-27 11:15:41 -04:00
parent 843b282cc4
commit 50a6bd5a40
11 changed files with 199 additions and 19 deletions

View File

@@ -72,5 +72,16 @@ public class GfxRangeTransformTests
Assert.NotNull(vm.Gfx.SnapshotVisibleObjects().Single().RangeTransform);
}
[Fact]
public void BunkiAnimationPublicationExcludesStablePopupHandles()
{
var animationRange = new GfxHandleRange(0, 60000);
Assert.True(animationRange.Contains(59999));
Assert.False(animationRange.Contains(60000));
Assert.False(animationRange.Contains(60050));
Assert.True(GfxHandleRange.All.Contains(60050));
}
private static Operand I(long v) => new(0, v);
}