- Found in:
- F4SE
Description
Wiki Description
Adds all Form in the array to be tagged for search. Be careful which form types are added, some may crash Fallout 4.
Documentation Comment
Adds all forms in the array to tagged search (Be careful what form types you add, some may crash)
Caveats
CK Wiki - Notes
None
Parameters
Examples
{tags three items for search}
MiscObject Property PowerRelayCoil Auto Const Mandatory
MiscObject Property VacuumTube Auto Const Mandatory
MiscObject Property Gear Auto Const Mandatory
Event OnInit()
Form[] tagged = new Form[0]
tagged.Add(PowerRelayCoil)
tagged.Add(VacuumTube)
tagged.Add(Gear)
FavoritesManager.AddTaggedForms(tagged)
Debug.Trace("Favorites manager tagged " + tagged.Length + " items for search.")
EndEventAuto-Generated Example
Form[] myFormArray__forms
FavoritesManager.AddTaggedForms(myFormArray__forms)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
