Animate 2020 Canvas StageGL not working
FYI, the recent update looks like StageGL has been enabled on export seeing that it is being instance in the lib namespace. However, I think it should be noted that the stage is still not WebGL. If one wants to get webGL going I believe the following line needs to change in the export.
(lib.Stage = function(canvas) {
createjs.Stage.call(this, canvas);
}).prototype = p = new createjs.StageGL();
to
(lib.Stage = function(canvas) {
createjs.StageGL.call(this, canvas);
}).prototype = p = new createjs.StageGL();
