I, of course, don't mean stealing or copying the weapons and art; I mean how the controls for the guns and melee work. The game's style is so streamlined, and I think it's great!
In standard FPS', your weapon is always at the ready, and you have a separate button for melee, if you even have that.
I would like to know how to keep a gun lowered, have M1 be melee; M2 be shooting from the hip, and holding shift and M2 is aiming down the sights, like in Hunt: Showdown—does anyone know how to mirror that?
Re: Does Anyone Know To Mimic Hunt: Showdown's Gun and Melee Control?
#2This can all be done via animation contexts and some careful coding in C++.
It all depends on the implementation of your weapon system on how your melee works (through physical collision - hard to pull off right, or through simple short distance ray hit - much easier).
You will need to get into C++ to change this though, especially in the GameSDK.
It all depends on the implementation of your weapon system on how your melee works (through physical collision - hard to pull off right, or through simple short distance ray hit - much easier).
You will need to get into C++ to change this though, especially in the GameSDK.
Uniflare
CRYENGINE Technical Community Manager
Here to help the community and social channels grow and thrive.
My personal belongings;
Beginner Guides | My GitHub | Splash Plugin
CRYENGINE Technical Community Manager
Here to help the community and social channels grow and thrive.
My personal belongings;
Beginner Guides | My GitHub | Splash Plugin
Re: Does Anyone Know To Mimic Hunt: Showdown's Gun and Melee Control?
#3Thanks! I've been dying to know, and now I have a step in the right direction. Now I either need to get better at C++ or find someone who is.
I'm very grateful.
I'm very grateful.
Re: Does Anyone Know To Mimic Hunt: Showdown's Gun and Melee Control?
#4No problem, you could probably implement a prototype using the RayCast node in Flow Graph. But you will still want to create a "Dummy Weapon" and some additional animation poses etc for holding the melee weapon. You may still need a little C++ to override/remove existing weapon mechanics unless you use a custom model as explained in our recently released animation tutorial videos:
https://www.youtube.com/watch?v=xP1NpW_iT_A
https://www.youtube.com/watch?v=kqZubpCYdAM
https://www.youtube.com/watch?v=xP1NpW_iT_A
https://www.youtube.com/watch?v=kqZubpCYdAM
Uniflare
CRYENGINE Technical Community Manager
Here to help the community and social channels grow and thrive.
My personal belongings;
Beginner Guides | My GitHub | Splash Plugin
CRYENGINE Technical Community Manager
Here to help the community and social channels grow and thrive.
My personal belongings;
Beginner Guides | My GitHub | Splash Plugin