I'm using the following code to hide objects between the camera and my player:
private void Update() {
Debug.DrawRay(this.transform.position, (this._target.transform.position - this.transform.position), Color.magenta);
RaycastHit[] hits = Physics.RaycastAll(this.transform.position, (this._target.transform.position - this.transform.position), Vector3.Distance(this.transform.position, this._target.transform.position));
foreach (RaycastHit hit in hits) {
Renderer r = hit.collider.renderer;
if (r) {
r.enabled = false;
}
}
}
It works just fine for hiding the objects. But what approach should I take to show these objects again when they're no longer between the player and the camera?
↧