) return;
//error for attempting a backdrop placement beyond camera's far clip plane:
if(distance > camera.farClipPlane){
Debug.LogError("Backdrop's distance is further than the camera's far clip plane. Extend the camera's far clip plane or reduce the billboard's distance.");
return;
}
//error for attempting a backdrop placement before camera's near clip plane:
if(distance < camera.nearClipPlane){
Debug.LogError("Backdrop's distance is closer than the camera's near clip plane. Extend the distance or reduce the camera's near clip plane.");