Defines the behavior of a servo that works on the relative orientation of two entities. Used when the MotorSettings' motorType is set to servomechanism.
Inheritance: ServoSettings
Exemple #1
0
 internal MotorSettingsOrientation(EntitySolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
Exemple #2
0
 internal MotorSettingsOrientation(SolverUpdateable motor)
     : base(motor)
 {
     servo         = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
Exemple #3
0
 public MotorSettingsOrientation(SolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }