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);
}