Animation System
Smooth animations with easing functions
Animation Overview
# Animation System Smooth animations with easing functions. ## Basic Animation ```lua cLib.Animate({ from = 0, to = 255, duration = 0.5...
Easing Functions
# Easing Functions ## Available Easings ### Linear ```lua cLib.Ease.Linear -- No easing, constant speed ``` ### Quad (Power of 2) ```lua cLib.Ea...
Panel Animation Helpers
# Panel Animation Helpers Convenience functions for common panel animations. ## Position Animation ```lua cLib.AnimatePos(panel, x, y, duration, ea...