Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Thanks for taking a look at my game! It's possible to change the controls by manually editing a settings file in your local AppData folder. You can find it here, just replace ${USER_NAME} with your current Windows user name and make sure that hidden files are visible in your Windows Explorer settings:

C:\Users\${USER_NAME}\AppData\Local\LastPanderling2/Settings.xml


When you open up this file in Notepad or another text editor, it should have a section like this:

  <KeyboardBindings>
    <Up>Up</Up>
    <Right>Right</Right>
    <Down>Down</Down>
    <Left>Left</Left>
    <Attack>Z</Attack>
    <Interact>X</Interact>
    <Dodge>C</Dodge>
    <Confirm>Enter</Confirm>
    <Cancel>Escape</Cancel>
    <Menu>Escape</Menu>
  </KeyboardBindings>


Just change the Up/Right/Down/Left values  like so to use WASD movement:

  <KeyboardBindings>
    <Up>W</Up>
    <Right>D</Right>
    <Down>S</Down>
    <Left>A</Left>

    <Attack>Z</Attack>
    <Interact>X</Interact>
    <Dodge>C</Dodge>
    <Confirm>Enter</Confirm>
    <Cancel>Escape</Cancel>
    <Menu>Escape</Menu>
  </KeyboardBindings>

Alternatively, you can plug in a USB gamepad and use that instead. Let me know if this fixes your issue!
(1 edit)

thx for the help and info but i cant seem to find it on my computer it says the file dosent exist and i enabled hidden files but thx anyways! ill just try it on a different computer