Skip to content

Commit e0808bb

Browse files
committed
Temporarily remove LayersTreeSearch
1 parent f31e18d commit e0808bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/RendererMixin.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { IRenderableObject, IRendererRenderOptions, Renderer } from '@pixi/core';
22
import { Container } from '@pixi/display';
3-
import { LayersTreeSearch } from './LayersTreeSearch';
3+
// import { LayersTreeSearch } from './LayersTreeSearch';
44
import { generateLayerContainerRenderMethod } from './DisplayMixin';
55

66
import type { Stage } from './Stage';
@@ -44,10 +44,10 @@ function generateLayerRendererMethod(_oldRender: any)
4444
{
4545
(displayObject as Stage).updateStage();
4646
}
47-
if (this.plugins.interaction && !this.plugins.interaction.search.worksWithLayers)
48-
{
49-
this.plugins.interaction.search = new LayersTreeSearch();
50-
}
47+
// if (this.plugins.interaction && !this.plugins.interaction.search.worksWithLayers)
48+
// {
49+
// this.plugins.interaction.search = new LayersTreeSearch();
50+
// }
5151

5252
_oldRender.call(this, displayObject, options, arg1, arg2, arg3);
5353
};

0 commit comments

Comments
 (0)