FindClosestReferenceOfAnyTypeInListFromRef - Game
Jump to navigation
Jump to search
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.
Syntax[edit | edit source]
ObjectReference Function FindClosestReferenceOfAnyTypeInListFromRef(FormList arBaseObjects, ObjectReference arCenter, float afRadius) global
Parameters[edit | edit source]
- 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 Value[edit | edit source]
The closest reference of any of the types within the radius around the center reference, none if none was found.
Examples[edit | edit source]
; Find the closest gem reference to the player, limiting the search to 5 units
ObjectReference closestGem = Game.FindClosestReferenceOfAnyTypeInListFromRef(GemList, Game.GetPlayer(), 5.0)