UNPKG

gtajesgenga-ami.js

Version:

1. [Hello AMI](#hello-ami) 2. [Features](#features) 3. [Usage](#yarn) 4. [Developer corner](#developer-corner) 5. [Change log](#change-log) 6. [Credits](#credits) 7. [Citations](#citations)

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; } }