↧
Answer by Tekksin
I don't work with raycasts because they're taxing, but do you have an else statement following the if? IE: if(raycasthit){ change color; } else{ return color; } the process to return the color should...
View ArticleAnswer by V-Jankaitis
void Hit_Target() // put this in update function { Ray ray = Cam.ScreenPointToRay(Input.mousePosition); if (Physics.Raycast(ray, out hit)) { if (hit.collider.gameObject.GetComponent() != null) // If...
View Article