示例#1
0
 public BehavorContext(Vector3 position, Vector3 velocity, SteeringSettings settings)
 {
     Position = position;
     Velocity = velocity;
     Settings = settings;
 }
示例#2
0
 public void SetSteeringSettings(SteeringSettings steeringSettings)
 {
     m_Settings = steeringSettings;
 }
示例#3
0
 public BehaviourContext(Vector3 position, Vector3 velocity, SteeringSettings settings)
 {
     _position = position;
     _velocity = velocity;
     _settings = settings;
 }