You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we rewrote our class model, we changed from defining properties on the prototype to defining them in the constructor. This offered a fairly significant performance improvement, and is in-line with ES6 approaches. However, it means that you can no longer change the snapToPixel default for a class by doing something like: createjs.Container.snapToPixel = false;
This would still be useful functionality. We should explore how to add this back in.
Also, the documentation is incorrect on this functionality.