Capítulo 236 de 411
Tweens EaselJS-specific color/filter properties (tint, saturation, hue, contrast, colorize, brightness, exposure) and MovieClip.frame, which plain numeric tweening can't handle because they map to EaselJS's ColorFilter/ColorMatrixFilter internals.
easel: {} object; ordinary numeric EaselJS properties (x, y, scaleX, etc.) don't need the plugin at all.tint, tintAmount, exposure, brightness (ColorFilter); saturation, hue, contrast, colorize, colorizeAmount (ColorMatrixFilter).stage.update() on GSAP's ticker since EaselJS doesn't auto-render.gsap.registerPlugin(EaselPlugin);
gsap.ticker.add(() => stage.update());
gsap.to(circle, { duration: 2, scaleX: 0.5, scaleY: 0.5, easel: { tint: 0x00ff00 } });