Defines the behavior of a servo that works on three degrees of freedom. Used when the MotorSettings' motorType is set to servomechanism.
Наследование: ServoSettings
Пример #1
0
 internal MotorSettings3D(EntitySolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
Пример #2
0
 internal MotorSettings3D(SolverUpdateable motor)
     : base(motor)
 {
     servo         = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
Пример #3
0
 public MotorSettings3D(SolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }