Поделиться через


ForceFeedbackMotor.MasterGain Свойство

Определение

Указывает процент, на который уменьшается сила всех эффектов на контроллере.

public:
 property double MasterGain { double get(); void set(double value); };
double MasterGain();

void MasterGain(double value);
public double MasterGain { get; set; }
var double = forceFeedbackMotor.masterGain;
forceFeedbackMotor.masterGain = double;
Public Property MasterGain As Double

Значение свойства

Double

double

Указывает процент, на который уменьшается сила всех эффектов на контроллере.

Примеры

// The Contoso and Fabrikam motors have a very high maximum
// torque output, so tone down all force feedback effects
// played on those devices so they don't overwhelm the user
if (motor->HardwareModelId == ContosoWheelMotorId)
{
    // Attentuate effects by 20% for the Contoso motor
    motor->MasterGain = 0.2;
}
else if (motor->HardwareModelId == FabrikamWheelMotorId)
{
    // Attenuate effects by 35% for the Fabrikam motor
    motor->MasterGain = 0.35;
}

// Make sure the motor is enabled
motor->IsMotorEnabled = true;

Применяется к