GetWarmthRating - Actor
Member of: Actor Script (Requires SSE 1.5.3)
Obtains the actor's current "warmth rating" (taking into account what they have equipped)
SyntaxEdit
float Function GetWarmthRating() native
ParametersEdit
None
Return ValueEdit
The current "warmth rating" of the actor.
ExamplesEdit
float playersWarmth = Game.GetPlayer().GetWarmthRating()
float benorsWarmth = BenorActor.GetWarmthRating()
if (playersWarmth > benorsWarmth)
Debug.Trace("The player is dressed better for cold weather than Benor is")
endIf