Im trying to find information about possibility of checking distance between player (represented by classic First Person Character Controller) and Object, which this player has shot.
I use simple C# script to shoot in direction.forward. Its done by Instantiate method.
Problem is, that the instantiate method only clones original object, so the distance is always calculated between original object and player.
Do you have any ideas how to calculate it right? :)
Yes, this code works fine. But it only detects distance between player and the last instatiated Object.
Thats not exactly what I expected.
I wanted to track if player is in range of this object.
For example, there will be 3 objects and whenever player reaches the point, where is the distance between one of those objects and player 10 it will kill the player.
Im gonna try to add a sphere collider to prefab that I instatiate and calculate it this way.
Do you think it might work?