Find BigWheelGame with in range?Solved
so im trying to find  this but its not finding it even if i use baseentity the wheel does not show.. i do not want to scan all the wheels as it takes to long and i get a time warning because of the distance check. so trying to scan for it in the range.

                       List<BigWheelGame> bigWheel = new List<BigWheelGame>();
			Vis.Entities<BigWheelGame>(position, 30f, bigWheel);
			if (bigWheel.Count <= 0) return null;
			else foreach (BigWheelGame wheelGame in bigWheel)
			{
				Puts(wheelGame.name);
			}​
You can find it once in OnServerInitialized hook
i can find it by geting all the game objects of type but problem is if there is 50 wheels and i scan threw them all to find the distance from point a to point b takes to long.. when i only want the one in the range.

Merged post

I added a colider to it now i can find it.
Locked automatically