Hi, first of all - I can’t file this as a bug since the fact that I can’t upload larger projects. And it is to hard to create a isolated sample project to upload.
Anyway, my animation engine has worked for over four months but width build .824 everything gets messed up. I think I know where the problem could be located - but I am not sure what to look for?
I do need someone from Ansca to look at my project and see the difference between 821 -> 824. How should I do?
It could be this code snippet that clears my animation, that doesn’t work with .824
for check = 1, container.numChildren do
local semiChild1 = container[check]
for kk,vv in pairs(data) do
local found = false;
for ii = 1, animalAnim[activeAnim].layers, 1 do
if(vv[animalAnim[activeAnim].frames\*ii].img==semiChild1.name) then
found = true
break;
end
end
if(found==true) then
semiChild1.isVisible = true;
else
semiChild1.isVisible=false;
end
end
end
This snippet runs through a group with graphics to see if they should be reused in the next animation. If not, then make them invisible.
Joakim
[import]uid: 81188 topic_id: 27136 reply_id: 327136[/import]