I think you may be misunderstanding - there is no pre-defined list of properties that GSAP can handle or recognize. It’s super flexible. You can literally do this:    let myObject = {someProp: 100}; gsap.to(myObject, { someProp: 500, onUpdate: () => console.log(myObject.someProp) });   You mentioned transformOrigin - that’s just a standard CSS property “transform-origin” but you simply camelCase those in JavaScript because JavaScript can’t accommodate dashes like that (it’d
    • Like
    4