GetOutfit - ActorBase

From the Fallout4 CreationKit Wiki
Revision as of 20:04, 19 April 2017 by imported>Qazaaq (Changed parameter description.)
Jump to navigation Jump to search

F4SE Member of: ActorBase Script

Returns this actors default or sleeping Outfit.

Syntax

Outfit Function GetOutfit(bool bSleepOutfit = false) Native

Parameters

  • bSleepOutfit: Whether or not to return the actors sleep outfit.
    • Default: False

Return Value

The Outfit for this actor.

Examples

Outfit myOutfit = Game.GetPlayer().GetActorBase().GetOutfit()
Debug.Trace(myOutfit)


Outfit mySleepOutfit = Game.GetPlayer().GetActorBase().GetOutfit(true)
Debug.Trace(mySleepOutfit)

Notes

None.

See Also