For the last few days I am making animation class, and I am on a stage where I need to decide to add or not an easeMethod.
I like the idea but I am concern about the extra time that will be needed for calculating the ease. The class is intended to be used on large number of objects and as such need to be as light as possible. Currently the class pre calculates value based on the animation length and range value, then the class simply adds the precalculated value every frame. If I add easeMethod this value calculation will need to be made every frame and I am concerned that this will lower the usefulness of the class.
Any thoughts will be appreciated
Regards Thovas
p.s. I hope i am not to vague in my description. If need be i will provide an example of what i mean!