StageGL antialiasing problem
See original GitHub issueI tried to enable antialias
on StageGL but it does not seem to work. This is what I used: new createjs.StageGL("stage", {"antialias": true})
When I inspect the stage, I see that the _antialias
property is set to true
. If I go back to using SpriteStage
, antialiasing works as it should.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Getting Started with StageGL - CreateJS Blog -
The five most common issues that you may encounter on your first run with StageGL are: I don't see my Shape or Text...
Read more >ZIM DOCS - StageGL - ZIMjs
This is useful if you want persistent draw effects. antialias (default false) ... effects with some assets, but may also cause problems with...
Read more >Blending anti-aliased circles with regl - Stack Overflow
Circles should be antialiased smoothly. Overlapping circles should look reasonable (blend colors, no corners showing). So far, I have this: ...
Read more >Anti-aliasing not working - Unity Forum
I've been struggling with making my sprites look clean for a while in a WebGL build, and I've tried every little tweak to...
Read more >CreateJS 1.0.0で何が変わったか - FumioNonaka.com
お品書き; StageGLクラスでStageを置き替えてWebGLが使えるようにするには ... で、 preserveBuffer と antialias のプロパティを true に定める。
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Are your sprites a size that is factor-of-two?
I made sure all my textures where POT-compliant and now anti-aliasing works fine. What threw me off was that this wasn’t a requirement with
SpriteStage
. Thanks for your help.