FindClosestReferenceOfAnyTypeInListFromRef - Game

Member of: Game Script

Finds the closest reference of any of the types in the list around the target reference and within the given radius.

SyntaxEdit

ObjectReference Function FindClosestReferenceOfAnyTypeInListFromRef(FormList arBaseObjects, ObjectReference arCenter, float afRadius) global

ParametersEdit

  • arBaseObjects: The list of valid base objects to look for
  • arCenter: The reference to use as the center point of the search
  • afRadius: Maximum distance from center to look for a reference

Return ValueEdit

The closest reference of any of the types within the radius around the center reference, none if none was found.

ExamplesEdit

; Find the closest gem reference to the player, limiting the search to 5 units
ObjectReference closestGem = Game.FindClosestReferenceOfAnyTypeInListFromRef(GemList, Game.GetPlayer(), 5.0)

See AlsoEdit