GetHairColor - ActorBase
Revision as of 04:34, 10 May 2012 by imported>PurpleLunchbox
SKSE Member of: ActorBase Script
Returns the ColorForm of this actors hair. (This function requires SKSE)
Syntax[edit | edit source]
ColorForm Function GetHairColor() native
Parameters[edit | edit source]
None
Return Value[edit | edit source]
Returns ColorForm of this actors hair.
Examples[edit | edit source]
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