Difference between revisions of "Talk:FindClosestActorFromRef - Game"
Jump to navigation
Jump to search
m
Talk:FindClosestActorFromRef - Game (edit)
Revision as of 04:01, 31 December 2017
, 04:01, 31 December 2017→SKSE alternative
imported>Rasikko (→SKSE alternative: Made a better function than the last one I made.) |
imported>Rasikko |
||
Line 18: | Line 18: | ||
; Bail if the cell contains more actors than an array can hold. | ; Bail if the cell contains more actors than an array can hold, or if the only actor is akCenter. | ||
if (CellRefs >= 129 || CellRefs == | if (CellRefs >= 129 || CellRefs == 1) | ||
return none | return none | ||
endif | endif | ||
Line 43: | Line 43: | ||
EndFunction | EndFunction | ||
</source> | </source> | ||
This will return the closest actor. How fast this function returns, depends on how many actors are in the cell. --[[User:Rasikko|Rasikko]] ([[User talk:Rasikko|talk]]) 2017-12- | This will return the closest actor. How fast this function returns, depends on how many actors are in the cell. --[[User:Rasikko|Rasikko]] ([[User talk:Rasikko|talk]]) 2017-12-31T04:01:58 (EST) |