GetHairColor - ActorBase
From Creation Kit
SKSE Member of: ActorBase Script
Returns the ColorForm of this actors hair. (This function requires SKSE)
Contents |
Syntax
ColorForm Function GetHairColor() native
Parameters
None
Return Value
Returns ColorForm of this actors hair.
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!") endif

