I have an object that on collision I would destroy using object:removeSelf(),
instead of that I would like to have the object shrink down to nothing so it appears to be
losing energy. Would someone help me accomplish this. Thanks!
function ball1:collision (event)
if (event.other.name == ‘radar1’) then
ball1:removeSelf()
ball1=nil
end
end