UNPKG

@edsilv/ami.js

Version:

<p align="center"> <img src="https://user-images.githubusercontent.com/214063/46479857-4cd66e80-c7f0-11e8-9585-5748409c9490.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; } }