MCPcopy
hub / github.com/pixijs/pixijs / DummyEffect

Class DummyEffect

src/scene/container/__tests__/DummyEffect.ts:6–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5/** @internal */
6export class DummyEffect implements Effect
7{
8 public pipe: string;
9 public priority: number;
10 public addBounds?(bounds: Bounds): void
11 {
12 bounds.pad(10);
13 }
14
15 public addLocalBounds?(bounds: Bounds): void
16 {
17 bounds.pad(10);
18 }
19
20 public containsPoint?(_point: PointData): boolean
21 {
22 return false;
23 }
24
25 public destroy(): void
26 {
27 // nothing to destroy
28 }
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected