FormationNode

C++
struct FormationNode {
  Vec3 vOffset;
  Vec3 vSightDirection;
  float fFollowDistance;
  float fFollowOffset;
  float fFollowDistanceAlternate;
  float fFollowOffsetAlternate;
  float fFollowHeightOffset;
  int eClass;
};
File

AIFormationDescriptor.h

FormationNode::eClass Data Member
C++
int eClass;
FormationNode::fFollowDistance Data Member
C++
float fFollowDistance;
FormationNode::fFollowDistanceAlternate Data Member
C++
float fFollowDistanceAlternate;
FormationNode::fFollowHeightOffset Data Member
C++
float fFollowHeightOffset;
FormationNode::fFollowOffset Data Member
C++
float fFollowOffset;
FormationNode::fFollowOffsetAlternate Data Member
C++
float fFollowOffsetAlternate;
FormationNode::vOffset Data Member
C++
Vec3 vOffset;
FormationNode::vSightDirection Data Member
C++
Vec3 vSightDirection;
FormationNode::FormationNode Constructor
C++
FormationNode();