11 lines
691 B
JavaScript
11 lines
691 B
JavaScript
shadow$provide.module$node_modules$pixi_DOT_js$lib$scene$container$utils$collectAllRenderables = function(global, require, module, exports) {
|
|
var deprecation = require("module$node_modules$pixi_DOT_js$lib$utils$logging$deprecation");
|
|
"use strict";
|
|
exports.collectAllRenderables = function(container, instructionSet, rendererOrPipes) {
|
|
deprecation.deprecation("8.7.0", "Please use container.collectRenderables instead.");
|
|
return container.collectRenderables(instructionSet, rendererOrPipes.renderPipes ? rendererOrPipes : rendererOrPipes.batch.renderer, null);
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$scene$container$utils$collectAllRenderables.js.map
|