GetHairColor - ActorBase

SKSE Member of: ActorBase Script

Returns the ColorForm of this actors hair. (This function requires SKSE)

SyntaxEdit

ColorForm Function GetHairColor() native

ParametersEdit

None

Return ValueEdit

Returns ColorForm of this actors hair.

ExamplesEdit

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

See AlsoEdit