.. | |||
src | 6 years ago | ||
LICENSE | 6 years ago | ||
README.md | 6 years ago | ||
package.json | 5 years ago |
Adds support for environments that disallow support of new Function
, such as WeChat.
npm install @pixi/unsafe-eval
If you are using a bundler, you need to pass the core bundle into the install
method. This function takes one arguments, either the global PIXI
object, or the core.
import * as PIXI from '@pixi/core'; import { install } from '@pixi/unsafe-eval'; // Apply the patch to PIXI install(PIXI); // Create the renderer with patch applied const renderer = new PIXI.Renderer();
If you are including unsafe-eval.js direct, you do not need to do anything else:
<script src="pixi.min.js"></script> <script src="unsafe-eval.min.js"></script>