Jump to content

Popa2caps

Initiates
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Popa2caps

  1. 4 hours ago, Weathers said:

    I've been trying (and failing) to customise the controls (a mix of GamepadLayout=0 & GamepadLayout=3) in the GameUserSetting.ini (when you change controller layouts ingame it adds a bunch of keybinds in there - see below) but it doesn't seem to work. In swapping,say, "ToggleTimeDilation" and "ToggleCrouch" I end up with both happening simultaneously during gameplay (pressing Crouch makes me crouch AND use TTD)

     

      Reveal hidden contents


    AddedActionKeyBinds=(ActionName="QuickSelect0",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Right)
    AddedActionKeyBinds=(ActionName="QuickSelect0HoldStart",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Right)
    AddedActionKeyBinds=(ActionName="QuickSelect0HoldEnd",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Released,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Right)
    AddedActionKeyBinds=(ActionName="ToggleTimeDilation",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Bottom)
    AddedActionKeyBinds=(ActionName="ToggleCrouch",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_RightThumbstick)
    AddedActionKeyBinds=(ActionName="JumpStart",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_LeftShoulder)
    AddedActionKeyBinds=(ActionName="JumpEnd",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Released,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_LeftShoulder)
    AddedActionKeyBinds=(ActionName="QuickMelee",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_RightShoulder)
    RemovedActionKeyBinds=(ActionName="QuickSelect0",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_LeftShoulder)
    RemovedActionKeyBinds=(ActionName="QuickSelect0HoldStart",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=1.000000,bRespectTD=False,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_LeftShoulder)
    RemovedActionKeyBinds=(ActionName="QuickSelect0HoldEnd",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Released,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_LeftShoulder)
    RemovedActionKeyBinds=(ActionName="ToggleTimeDilation",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_RightShoulder)
    RemovedActionKeyBinds=(ActionName="ToggleCrouch",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Right)
    RemovedActionKeyBinds=(ActionName="JumpStart",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Bottom)
    RemovedActionKeyBinds=(ActionName="JumpEnd",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Released,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_FaceButton_Bottom)
    RemovedActionKeyBinds=(ActionName="QuickMelee",bShift=False,bCtrl=False,bAlt=False,bCmd=False,EventType=IE_Pressed,HoldTime=0.000000,bRespectTD=True,bCanRebind=True,bCanRebindEventType=True,Key=Gamepad_RightThumbstick)

     

    You can setup deadzones by adding below to your Input.ini found in C:\Users\XXXXXXXX\AppData\Local\Indiana\Saved\Config\WindowsNoEditor (assuming Epic

    GameUserSetting.ini is found here too

    [/Script/Engine.InputSettings]
    AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000))
    AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000))
    AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.200000))
    AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.200000))

    The full entry also has sensitivity and invert as well as "Exponent" but I don't know what that does. 

    +AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))

     

     

    Let us know if you make a breakthrough

    Thank you for the quick reply, but i'm done with this title for now. I like to start a game and just work everything from ingame (for me). For example, i don't think a new game should have so much outside help for simple things. I shouldn't need to add code to a script file to remove deadzone or use something to remove some effect. It's silly to think about it. Plus i'm using the Xbox game service, so i hear there are things you can't do, unlike if one plays it from EPIC (something to do with, some Xbox files you can't change or something i don't know).

    I was hoping i would have liked this, but the style and gameplay is a massive 0 for me. I hope the above info gets to someone who liks this and helps them play more of this though. I want to say thanks again for taking your own time by telling me on how to change the deadzone. It's by far the worst thing in my eyes, when some game creator thinks they know best and puts a damper on my aiming, without even knowing my setup.

    Here is to hoping that some patchs come and make this into a great game at some point.

  2. Is there a way to setup custom controls? I tested the first 2 mins of gameplay and can't get into how these are setup (I dislike all the made up controller setups). I also want to point out, why offer open custom controls for keyboard right above controllers, i don't get why they both don't have open controls.

    Anyway to disable the aim acceleration for controller? I did find a setting to use in the open ini file for this for mouse, anyway to appy this to the odd look feel in the game?

    Anyway to have access to deadzone and control features? It seems someone at this studio is overlooking settings that are in most all games in 2019. I can't play this was these controls, it makes me sick to even try.
     

×
×
  • Create New...