UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

11 lines (10 loc) 271 B
"use strict"; import { ParamConfig } from "../../utils/params/ParamsConfig"; export function TexturesFolderParamConfig(Base) { return class Mixin extends Base { constructor() { super(...arguments); this.textures = ParamConfig.FOLDER(null); } }; }