Download Project Files: www.patreon.com/posts/project-files-116321676 (support me on Patreon too!)
@mimadm48322 ай бұрын
Hey man really great content! Can you make an FPS vaulting system, really like how you explain the stuff
@UnrealAxis2 ай бұрын
Thanks! Turn on notifications, will consider it! Good luck!
@mimadm48322 ай бұрын
@UnrealAxis its alr turned on man :D
@UnrealAxis2 ай бұрын
@@mimadm4832 see if you like this simple one kzbin.info/www/bejne/pZLNXoebpc1jm7s - good luck!
@borbo232 ай бұрын
I'd really like to know how to put crouch and slide on the same button - like if you're running and press crouch you slide.
@UnrealAxis2 ай бұрын
@@borbo23 one way can be to check in event tick the velocity length and compare it with some number - for example greater than 0 or let’s say greater than 650 or a number that works for you, and then trigger the slide event. You’ll also need a new Boolean to make sure you trigger the slide event only once and not again and again till it stops sliding. Or you can try using the doOnce node for that instead of a variable and reset the doOnce on uncrouch or when it stops. Just a quick thought and there might be better ways than this, keep exploring keep learning good luck!
@UnrealAxis2 ай бұрын
@borbo23 even better solution: When crouch key is pressed, use a branch to check whether actor velocity length is greater than 0 (or some number) - if true use crouch and slide event else use crouch event. Good luck! (if you want to know how to check velocity vector length with some number see my latest video about camera shakes from my channel page.)
@UnrealAxis2 ай бұрын
@borbo23 you'll probably like this video: kzbin.info/www/bejne/b4fIlK2OjriZmbM - I updated the project to use same key for crouch and slide, good luck!
@venomtang2 ай бұрын
subbed,
@UnrealAxis2 ай бұрын
@@venomtang nice! Check more videos on my channel page
@venomtang2 ай бұрын
@@UnrealAxis im in the middle of rigging something, but believe me I will, aha
@UnrealAxis2 ай бұрын
@@venomtang good luck on your game dev journey! Have fun!
@SourPickleGames2 ай бұрын
hey can you make a tutorial on how to make it so the camera dosent clip into the thing you crouching under when you uncroutch
@UnrealAxis2 ай бұрын
yea will work on it and reply here when uploaded!
@SourPickleGames2 ай бұрын
@@UnrealAxis thanks
@UnrealAxis2 ай бұрын
kzbin.info/www/bejne/nXvTpmyZq8RngK8 here it is, good luck!