Quantcast
Channel: Latest Questions by alexkaskasoli
Viewing all articles
Browse latest Browse all 56

Hiding objects between my character and camera, how to show them again when they're no longer in the way?

$
0
0
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?

Viewing all articles
Browse latest Browse all 56

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>