UNPKG

@tsparticles/shape-text

Version:
9 lines (8 loc) 311 B
import { TextDrawer } from "./TextDrawer.js"; import { validTypes } from "./Utils.js"; export async function loadTextShape(engine) { engine.checkVersion("4.1.0"); await engine.pluginManager.register(e => { e.pluginManager.addShape(validTypes, () => Promise.resolve(new TextDrawer())); }); }