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
@danzen I didn't work with CreateJS so I'll need to read and learn to implement the example.
If we have rectangles of different sizes will the cache do its thing?
You could try using StageGL (GPU based) with CreateJS
this.stage = new createjs.StageGL("canvas");
and then you need to cache() the rectangles so they are bitmaps
rect.cache(0, 0, size, size);
this.stage.addChild(rect);
The text was updated successfully, but these errors were encountered: