Skip to content

Commit

Permalink
remove includeInBuild (pixijs#11069)
Browse files Browse the repository at this point in the history
  • Loading branch information
GoodBoyDigital authored Nov 18, 2024
1 parent 45b5fef commit d8b8e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/EventBoundary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ export class EventBoundary
private _interactivePrune(container: Container): boolean
{
// If container is a mask, invisible, or not renderable then it cannot be hit directly.
if (!container || !container.visible || !container.renderable || !container.includeInBuild || !container.measurable)
if (!container || !container.visible || !container.renderable || !container.measurable)
{
return true;
}
Expand Down

0 comments on commit d8b8e18

Please sign in to comment.