UNPKG

ami.js

Version:

<p align="center"> <img src="https://cloud.githubusercontent.com/assets/214063/23213764/78ade038-f90c-11e6-8208-4fcade5f3832.png" width="60%"> </p>

19 lines (16 loc) 277 B
export default class ShadersBase { constructor() { this._name = 'shadersBase'; this._base = { _functions: {}, _uniforms: {}, }; this._definition = ''; } get name() { return this._name; } set name(name) { this._name = name; } }