BodyWeight Struct - ActorBase

From the Fallout4 CreationKit Wiki
Revision as of 17:47, 19 April 2017 by imported>Qazaaq (Added F4SE member)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

F4SE Member of: ActorBase Script

A structure that holds information about an actors body weight consisting of three ratios. The sum of the three ratios should add to 1.0

Syntax

Struct BodyWeight
  float Thin
  float Muscular
  float Large
EndStruct

Members

  • Thin: The thin ratio of the actors weight.
  • Muscular: The muscular ratio of the actors weight.
  • Large: The large ratio of the actors weight.

Examples

ActorBase:BodyWeight bodyWeight = new ActorBase:BodyWeight
Debug.Trace("Thin: " + bodyWeight.Thin)
Debug.Trace("Muscular: " + bodyWeight.Muscular)
Debug.Trace("Large: " + bodyWeight.Large)

See Also