Capítulo 10 de 411
gsap.defaults() sets tween-specific properties (like ease and duration) that every subsequently created tween inherits unless it explicitly overrides them or sets inherit: false.
defaults() is for properties every tween can have (ease, duration, etc); non-tween-specific settings (units, autoSleep, force3D) belong in gsap.config() instead.gsap.defaults({
ease: "power2.in",
duration: 1,
});
defaults() for animation-affecting values you want inherited; use config() for engine-level behavior.