ForceFeedbackMotor.MasterGain Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menentukan persentase untuk mengurangi gaya semua efek pada pengontrol.
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
Nilai Properti
Double
double
Menentukan persentase untuk mengurangi gaya semua efek pada pengontrol.
Contoh
// 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;