Class DualShock3GamepadHID
Inheritance
DualShock3GamepadHID
Assembly: Unity.InputSystem.dll
public class DualShock3GamepadHID : DualShockGamepad, IDualShockHaptics, IDualMotorRumble, IHaptics
Properties
Declaration
public ButtonControl leftTriggerButton { get; protected set; }
Property Value
Declaration
public ButtonControl playStationButton { get; protected set; }
Property Value
Declaration
public ButtonControl rightTriggerButton { get; protected set; }
Property Value
Methods
Perform final initialization tasks after the control hierarchy has been put into place.
Declaration
protected override void FinishSetup()
Overrides
public class MyDevice : InputDevice
{
public ButtonControl button { get; private set; }
public AxisControl axis { get; private set; }
protected override void OnFinishSetup()
{
// Cache controls in getters.
button = GetChildControl("button");
axis = GetChildControl("axis");
}
}
Implements
Extension Methods