- Found in:
- SKSE
Description
Wiki Description
Returns the body weight of this actor. (This function requires SKSE)
Documentation Comment
Get/Set the actors body weight
Caveats
CK Wiki - Notes
- The body weight is a value from 0-100 which is related to the weight when creating your character in the race menu.
Examples
ActorBase pActorBase = Game.GetPlayer().GetActorBase()
float weight = pActorBase.GetWeight()
Debug.Trace("The players body weight is " + weight + "%")Auto-Generated Example
float returnedValue = myActorBase__toCallFunctionOn.GetWeight()