FFBeast Wheel WebHID API
    Preparing search index...

    Interface DirectControl

    Direct control forces applied to the wheel.

    All force values are normalized range (-10000 to +10000).

    interface DirectControl {
        constantForce: number;
        forceDrop: number;
        periodicForce: number;
        springForce: number;
    }
    Index

    Properties

    constantForce: number

    Constant force moving the wheel in a specific direction.

    • Range: -10000 to +10000
    • Default: 0
    forceDrop: number

    Global force scaling factor (inverse).

    • Formula: TotalForce = InitialForce * (1 - ForceDrop / 100)
    • Range: 0 to 100
    • Default: 0
    periodicForce: number

    Periodic effect force (sine/triangle/etc). Not affected by dampening.

    • Range: -10000 to +10000
    • Default: 0
    springForce: number

    Spring force acting opposite to wheel rotation.

    • Range: -10000 to +10000
    • Default: 0