- Found in:
- F4SE
Description
Wiki Description
Returns all 12 favorites which may contain none entries.
Documentation Comment
Returns all 12 favorites, may contain None entries
Caveats
CK Wiki - Notes
None
Examples
{For each favorite form}
Form[] favorites = FavoritesManager.GetFavorites()
If (favorites)
int index = 0
While (index < favorites.Length)
Debug.Trace("Favorited item at index " + index + " is " + favorites[index])
index += 1
EndWhile
Else
Debug.Trace("There are no favorite items.")
EndIfAuto-Generated Example
Form[] returnedValue = FavoritesManager.GetFavorites()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
