Spaces:
Running
Running
| class Uniform { | |
| constructor(value) { | |
| if (typeof value === 'string') { | |
| console.warn('THREE.Uniform: Type parameter is no longer needed.'); | |
| value = arguments[1]; | |
| } | |
| this.value = value; | |
| } | |
| clone() { | |
| return new Uniform(this.value.clone === undefined ? this.value : this.value.clone()); | |
| } | |
| } | |
| export { Uniform }; | |