error fix

This commit is contained in:
Michael Freno
2025-09-19 10:11:15 -04:00
parent e4ab6befa4
commit 3d66d4e0e4
2 changed files with 5 additions and 2 deletions

View File

@@ -942,8 +942,8 @@ function TestPerformance:testComplexAnimationReadyLayoutPerformance()
for i, element in ipairs(animation_elements) do
if (frame + i) % 10 == 0 then
-- Animate size changes
element.w = element.w + math.sin(frame * 0.1 + i) * 2
element.h = element.h + math.cos(frame * 0.1 + i) * 1
element.w = element.width + math.sin(frame * 0.1 + i) * 2
element.h = element.height + math.cos(frame * 0.1 + i) * 1
end
if (frame + i) % 15 == 0 then