setTextureCube method
Implementation
void setTextureCube(Texture texture, int slot) {
var textureProperties = properties.get(texture);
if (texture.version > 0 &&
textureProperties["__version"] != texture.version) {
uploadCubeTexture(textureProperties, texture, slot);
return;
}
state.activeTexture(gl.TEXTURE0 + slot);
state.bindTexture(gl.TEXTURE_CUBE_MAP, textureProperties["__webglTexture"]);
}