At this moment Viewport.TransformHit
returns an object (or nil) no matter how far the transform is. I know the MouseRayHit
gives us the distance & the object, however TransformHit
is more universal - it’s also encouraged inside the FPS game template.
Of course every developer who doesn’t want an infinite range can write the appropriate code, but it will be actually a copy / paste of TransformHit
. We have the code already, it only needs to be distance-aware with just one if
clause.
So my suggestion is to either add an overloaded TransformHit, or - like below - just add an optional MaxDistance: Single = 0
argument. In that way it’ll keep backward compatibility.
function TCastleViewport.TransformHit(const Position: TVector2;
const ContainerCoordinates: Boolean; MaxDistance: Single = 0): TCastleTransform;
var
RayOrigin, RayDirection: TVector3;
RayHit: TRayCollision;
begin
PositionToRay(Position, ContainerCoordinates, RayOrigin, RayDirection);
RayHit := CameraRayCollision(RayOrigin, RayDirection);
if RayHit <> nil then
begin
try
Result := RayHit.Transform;
// colossal change to the code is here:
if (MaxDistance > 0) and (RayHit.Distance > MaxDistance) then
Result := nil;
// and that's it
finally FreeAndNil(RayHit) end;
end else
Result := nil;
end;
Maybe it’s not a most requested feature, but I thought it could be useful.