- Found in:
- SKSE
Description
Wiki Description
Returns the ColorForm of this actors hair. (This function requires SKSE)
Caveats
Examples
ActorBase pActorBase = Game.GetPlayer().GetActorBase()
ColorForm color = pActorBase.GetHairColor()
int hue = color.GetHue()
int sat = color.GetSaturation()
int lum = color.GetLuminosity()
if hue >= 230 && hue <= 255 && sat >= 190 && sat <= 255 && lum >= 125 && lum <= 255
Debug.Trace("Player has red hair!")
endifAuto-Generated Example
ColorForm returnedValue = myActorBase__toCallFunctionOn.GetHairColor()