(attrName, setter)
| 459 | } |
| 460 | |
| 461 | setShaderAttribute(attrName, setter) { |
| 462 | this[_shaderAttrs] = this[_shaderAttrs] || {}; |
| 463 | this[_shaderAttrs][attrName] = setter; |
| 464 | this.forceUpdate(); |
| 465 | } |
| 466 | |
| 467 | setUniforms(uniforms) { |
| 468 | this[_uniforms] = this[_uniforms] || {}; |
nothing calls this directly
no test coverage detected