setFrontTorqueDist

setFrontTorqueDist(frontTorqueDist [Float] )

Sets the torque distribution towards the front wheels. The value should never be more than 1, or less than 0.

        inputContextButton(
            "Front Torque Distribution (%): ",
            "Front Torque Distribution (%)",
            "Controls your front torque distribution.",
            0, 1, 0, 0.01,
            currentFrontTorqueDist,
            function(val)
                currentFrontTorqueDist = val
                dynamic:setFrontTorqueDist(currentFrontTorqueDist)
            end
        )