Background for Fallout 4
Member of the ActorBase script
<UNKNOWN_SCRIPT: Outfit>functionGetOutfit(boolbSleepOutfit=false)Native

Description

Wiki Description

Returns this actors default or sleeping Outfit.

Documentation Comment

Get the Outfit of the actor


Caveats

CK Wiki - Notes

None.


Parameters

boolbSleepOutfit=false

CK Wiki Description

Whether or not to return the actors sleep outfit.

  • Default:False

Examples

ActorBase PlayerBase = Game.GetPlayer().GetActorBase()

Outfit defaultOutfit = PlayerBase.GetOutfit()
Debug.Trace(defaultOutfit)
ActorBase PlayerBase = Game.GetPlayer().GetActorBase()

Outfit sleepOutfit = PlayerBase.GetOutfit(true)
Debug.Trace(sleepOutfit)

Auto-Generated Example

bool myBool__bSleepOutfit

Outfit returnedValue = myActorBase__toCallFunctionOn.GetOutfit(myBool__bSleepOutfit)

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.