Incorporating an environment map into my scene has been a successful endeavor. The lines of code involved are:
sceneTarget.environment = envMap;
and sceneTarget.background = envMap;
Now, I am seeking guidance on how to disable the environment altogether.
Furthermore, I aim to exclude any conditional statements like if(loadAnEnvMap){// ... ...}
from my RGBELoader() function.