UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

8 lines 394 B
import { NearestFilter, WebGLRenderTarget } from "three"; import createObjectPool from "../utils/createObjectPool"; const pars = { minFilter: NearestFilter, magFilter: NearestFilter }; export const [requestShadowRenderTarget, releaseShadowRenderTarget] = createObjectPool((params) => new WebGLRenderTarget(params[0], params[1], pars)); //# sourceMappingURL=shadowRenderTargetPool.js.map