controller key binding

+

mbrto

Forum regular
im trying out cyberpunk with an analog keyboard that maps wasd to controller stick inputs
moving around on foot works pretty smoothly but in a vehicle i cant accelerate
it works horizontally for the steering wheel but not vertically

do i have to press an additinal button with a controller to accelerate?

are moving forwad/backward on foot the same controller inputs as in a vehicle?
Post automatically merged:

i think i found a solution
messed with the inputUserMappings.xml

Acceleration_Axis has the default value IK_Pad_RightTrigger
which led me to believe you have to press some other button to accelerate the vehicle (whateverIK_Pad_RightTrigger is)

the acceleration works, but its not dependend on how far the button is pressed

is that how people usually play with a controller? user the stick to move around but press a button to accelerate a vehicle?
im kinda noob, never played with a gamepad before

XML:
<mapping name="Acceleration_Axis" type="Axis" >

        <button id="IK_Pad_LeftAxisY" /> <!-- IK_Pad_RightTrigger -->

        <button id="IK_W" val="1.0" overridableUI="vehicleAccelerate"/>

    </mapping>
Post automatically merged:

my current solution that works with accelerating & decelerating:

XML:
    <mapping name="Acceleration_Axis" type="Button" SIEJADependent="true" >
        <button id="IK_Pad_LeftAxisY" thresholdPress="0.2" thresholdRelease="0.5" />
    </mapping>
 
    <mapping name="Deceleration_Axis" type="Button" SIEJADependent="true" >
        <button id="IK_Pad_LeftAxisY" thresholdPress="-0.2" thresholdRelease="-0.5" />
   </mapping>

looks like accelerating with controllers is done by pressing the right trigger key.
i assumed this was done by using the left stick, just like the regular walking movement.

as a result the acceleration speed is not dependend on how far the button is pressed.

any controller users here? do you press a different button for moving forward when in a vehicle?
 
Last edited:
Top Bottom