thekayaker33 Posted July 16, 2020 Share Posted July 16, 2020 Hi, I am trying to create holes in a pixi.graphics object. However, when the holes overlap, weird things happen. I read in the documentation for beginHole(), that this bug is known. Is there any workaround to this so that holes can overlap? Quote Link to comment Share on other sites More sharing options...
ivan.popelyshev Posted July 16, 2020 Share Posted July 16, 2020 (edited) Not possible. PixiJS uses earcut library to do triangulation . Even if you swap a lib , all libs known by me are using winding number to determine holes. That math number does not allow intersecting holes. If its only a small number of objects, you can learn how to use layers (filters, renderTexture, stuff) , and blendModes (CLEAR!!!) to render those figures. Edited July 16, 2020 by ivan.popelyshev Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.