[FREE] ThirdPerson Action Platformer

Hi @Neodinznak,

Combat would be a big addition. I havent looked at the couch knight project but will check it out.

@ you just made me realize that I didn’t include a speed parameter for the ladder climb OR the vine climbing :P. Luckily is very easy to add:

  1. Go to the Movement section and look for the “Set distance along spline for ladder” section

  2. Create a new Float variable and name it “LadderClimbSpeed” with a default value of 1.

  3. Now take LadderClimbSpeed and multiply it by the Axis value and add the results to the DistanceAlongLadder variable like in the screenshot
    Basically you are replacing the Axis value with the result of Axis value * LadderClimbSpeed

  4. Now change the LadderClimbSpeed value to see a speed change. This is percent increase / decrease, so if you want to go at normal speed, make this 1. If you want to increase by 50%, make the value 1.5. If you want to decrease the speed by 50%, make value 0.5, etc.