ForceFeedbackMotor.MasterGain 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定减少控制器上所有效果的力的百分比。
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;