(edit-not decals), animated objects. All I want to do is rotate them a little bit (always rotating) but for some strange reason they wobble madly when rotating. (changed - inherent @ animation?)
I tried isimmobile = yes/ isimmobile = no
SetRotation and ResetRotation,
Physics off/ Physics on, I put it up in the sky instead of the ground. Nothing stops the wobble!

These may be actual objects and not fully decals?? So I still try both CollisionOff/ CollisionOn
////////// Edit... It really seems like the wobble is part of the animation, (slow and steady when still) but with rotation the wobble becomes an extreme nuisance so I'll still ask about it just for the heck of it.

Here's a quick test script to see if anyone has better luck?
------------------------------
rot = {}
function rotate_decal_init(e)
rot[e] = 0
end
function rotate_decal_main(e)
CollisionOff(e)
SetRotation(e, 0, rot[e], 0)
ResetRotation(e, 0, rot[e], 0)
rot[e] = rot[e] + 1
end
Easy to make a normal decal from these?