Perfect! You did this in 6 minutes. I don't understand why other tutorials on this topic need to be 25 to 45 minutes long.
@Theos822 ай бұрын
thanks you so much, short and useful tutorial like we all want, keep up the good stuff !
@Erama07079 ай бұрын
Very helpful! the simplest tutorial for this!😘
@InkoiMK2 Жыл бұрын
Good stuff!
@sudokid Жыл бұрын
Thanks man
@Brad_04087 ай бұрын
thank you bro this works great
@melson-dy3kw6 ай бұрын
Excellent tutorial,can u do it for mobile input,for example - joystick,touch only right side
@sudokid5 ай бұрын
I don't do mobile development sorry
@unrealdevop9 ай бұрын
No idea why but this didn't work for me. I got a BindAction error and as far as I know I did it like you did. I can only assume that you skipped a bunch of stuff given that you already had this setup for yours.
@3Dzaraki8 ай бұрын
nah he didnt skip anything, paste ur error here tho
@TAWY5106 ай бұрын
@@3Dzaraki I think they commented on the wrong video entirely, because nothing was even setup prior to the tutorial - they did it all step-by-step. I don't really understand what the user you replied to meant.
@marcapouli78056 ай бұрын
@@TAWY510 Are you kidding? He has copied and paste a bunch of code, even inside a "SetUpPlayerInputComponent" function already implemented. It really looks like we didn't see the same vid 🤔
@TAWY5105 ай бұрын
@@marcapouli7805 No, I'm not kidding - we saw the same video. The BindAction calls on the EnhancedInputComponent within "SetUpPlayerInputComponent" for Jump, Move, and Look exist by default in the Unreal Third Person Template. That is not code he wrote, nor copy/pasted. That is code that Epic wrote and it already existed. No worries
@marcapouli78055 ай бұрын
@@TAWY510 I'm not using a pawn ot a character, that's why I don't have any of these things. But that's fine, Sudokid already answered me and I made it work in my conreoller
@yevgeni10 Жыл бұрын
Did they changed Camera Zoom in Enhanced Input ??
@sudokid Жыл бұрын
The enhanced input system changes the way you interact with player inputs so sorta.
@yevgeni10 Жыл бұрын
@@sudokid I tried your Camera Mouse Zoom method but for some reason it don't work.
@sudokid Жыл бұрын
I'll try and get an updated version of zoom out that uses the new input system. The old one has most of the information but is missing some parts that could be hard to understand if you are new to UE@@yevgeni10
@sudokid Жыл бұрын
Let me know if this does the trick kzbin.info/www/bejne/aKi0p2eNZ5aAodU
@spaaaaace895219 күн бұрын
This is barely a tutorial. You just jumped in the middle.
@marcapouli78056 ай бұрын
What is this "SetUpPlayerInputComponent" function? You didn't explain that part, which makes the video impossible to follow for me...not very pedagogic 😅
@sudokid6 ай бұрын
I'm sorry you feel that way. The `SetUpPlayerInputComponent` is a default method that is part of the `ACharacter` when you create one from within the UE interface. It is not technically required. dev.epicgames.com/documentation/en-us/unreal-engine/API/Runtime/Engine/GameFramework/ACharacter/SetupPlayerInputComponent?application_version=5.3 dev.epicgames.com/documentation/en-us/unreal-engine/API/Runtime/Engine/GameFramework/ACharacter?application_version=5.3
@marcapouli78056 ай бұрын
@@sudokid Ah thank you! I still had to use something since I'm inside of the controller so I ended up with "UInputComponent* InputComp = this->InputComponent;" then use this for the cast, and it works :)