@pixi/react
Version:
Write PixiJS applications using React declarative style.
18 lines (15 loc) • 538 B
JavaScript
import { Filter } from 'pixi.js';
;
function attach(parentInstance, childInstance, targetIndex) {
if (childInstance instanceof Filter) {
childInstance.__pixireact.parent = parentInstance;
if (typeof targetIndex === "number") {
parentInstance.__pixireact.filters.splice(targetIndex, 0, childInstance);
} else {
parentInstance.__pixireact.filters.push(childInstance);
}
parentInstance.filters = parentInstance.__pixireact.filters;
}
}
export { attach };
//# sourceMappingURL=attach.mjs.map