Animation playing in reverse when going backward , you forgot to change speed back to 1 in animation or you can simply remove the sneaking back animation .
@tareqgamedev5 ай бұрын
You are correct, but I did mention this in the video at (31:35).
@vanan22357 ай бұрын
Will you work on Unity in the future?
@tareqgamedev7 ай бұрын
Absolutely! I plan to upload two videos each week-one focusing on Unreal Engine as part of the Advanced Locomotion series, and the other on Unity.
@vanan22357 ай бұрын
@@tareqgamedev 🥰🥰🥰
@thevirusnvgm25185 ай бұрын
I do not know why, but when i used raycastHit in FixedUpdate, it constantly stoped, I mean the values were thrown, and the character continued to run even though he shouldn’t, I moved it to regular update and everything worked correctly, I don’t know why, strange bug
@tareqgamedev5 ай бұрын
It's odd! It should work fine in both Update and FixedUpdate. Since we aren't performing any intensive physics tasks with the query result, it's okay to do it in the Update method. However, it should still work in the FixedUpdate as I did in the tutorial. You can try debugging the ray cast hit list to see what happens when it's executed in the Update method compared to the FixedUpdate method (in this case, there shouldn't be any difference). However, as I mentioned, it's fine to do this in the Update method.
@ducnguyenzz7 ай бұрын
Great!
@_alieutu93037 ай бұрын
continues the weapon system, with a scheme to equip 2 or more and inventory
@tareqgamedev7 ай бұрын
I initially planned to create a series on inventory systems, but when I looked it up after uploading the video, I found numerous tutorials on inventory systems in Unity. Therefore, I decided not to create another inventory series. I am currently working on a comprehensive series about a locomotion system in Unreal Engine 5 and C++, covering basic movement, and advanced topics like turning in place, leaning, and more, which takes a huge amount of time and effort, and I am not even sure when I will upload the first video, so maybe in the future, I will consider creating a new series focused on implementing an inventory system. However, if you want to add an inventory system, there are plenty of helpful series on KZbin that you can follow to easily implement it with the weapons systems.
@_alieutu93037 ай бұрын
@@tareqgamedev
@_alieutu93037 ай бұрын
I'll look for a good inventory tutorial, thanks for the help, I really liked the weapon system
@tareqgamedev7 ай бұрын
You're welcome. I'm glad you found the tutorial helpful.