Files
il/resources/public/js/cljs-runtime/module$node_modules$pixi_DOT_js$lib$rendering$renderers$shared$geometry$const.js
2026-07-01 22:38:29 -06:00

13 lines
778 B
JavaScript

shadow$provide.module$node_modules$pixi_DOT_js$lib$rendering$renderers$shared$geometry$const = function(global, require, module, exports) {
var deprecation = require("module$node_modules$pixi_DOT_js$lib$utils$logging$deprecation");
"use strict";
const DEPRECATED_DRAW_MODES = {POINTS:"point-list", LINES:"line-list", LINE_STRIP:"line-strip", TRIANGLES:"triangle-list", TRIANGLE_STRIP:"triangle-strip"};
global = new Proxy(DEPRECATED_DRAW_MODES, {get(target, prop) {
deprecation.deprecation(deprecation.v8_0_0, `DRAW_MODES.${prop} is deprecated, use '${DEPRECATED_DRAW_MODES[prop]}' instead`);
return target[prop];
}});
exports.DRAW_MODES = global;
};
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$rendering$renderers$shared$geometry$const.js.map