Background for Skyrim SE
Member of the ActorBase script
OutfitfunctionGetOutfit(boolbSleepOutfit=false)Native

Description

Wiki Description

Get the outfit of this actor. (This function requires SKSE)

Documentation Comment

Get the Outfit of the actor


Caveats

CK Wiki - Notes

None.


Parameters

boolbSleepOutfit=false

CK Wiki Description

will return the default outfit if false, and the sleep outfit if true. (default = false)


Examples

Outfit Property SleeperOutfit Auto

ActorBase pActorBase = Game.GetPlayer().GetActorBase()
if pActorBase.GetOutfit(true) == SleeperOutfit
; ...
endif

Auto-Generated Example

bool myBool__bSleepOutfit

Outfit returnedValue = myActorBase__toCallFunctionOn.GetOutfit(myBool__bSleepOutfit)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.