Hey, yes I have followed those guides. I have been able to retarget to metahuman when using the base third person template. It just hasn’t been working here. I understand the hands won’t be exact but they were floating like a foot off the weapon, not sure if that’s supposed to be the case (the rest of the character looked fine, sights aligned ect). I may be making a really silly mistake somewhere… but a video would be amazing.
Here’s a video of me retargeting my idle anim to a metahuman:
EDIT: video re-done with the new project’s version, so no remove and re-add virtual bones anymore
The hands position aren’t supposed to be preserved on the new skeleton, several bone sizes are different, specially hands. Since I’ve included an IK system in the anim BP, you can fix hand position on the gun quickly in the anim graph, just using one TransformBone node. If you want more specific instructions, please come to the Discord server where I already have pics for that. I just need to ask you to please send me your Order ID privately so I can send you the invite (to see your Order IDs just login to unrealengine.com, hover over your username on the top-right corner, then click Personal → Transactions).
Thank you!
Awsome system. Are there any plans to natively use Control-Rig in the future?
And use Animation Pose Assets to lay the hand around the weapon, eg. to only have one walk animation an not for every weapon?
Would make adding something to your current system for us all a lot easier
Thank you!
Currently there are no plans to use control-rig or pose assets in this project. Maybe in the future, but right now I don’t see much real benefit (vs the amount of complexity added), since all those things already can be done with just anim blueprints…
Just bought the pack looking for a discord invite and thanks for your work!
Hey thank you! I’ve just sent you a private msg…
Product updated (see change log)
Hey bought your product and was wondering if i could get invited to the discord!
Hey, thank you! I’ve just sent you a private msg!
Hi. Can I also be invited to the discord?
May I ask if you have plans to change the current recoil of the weapon. Currently, it is affecting the camera by “add camera pitch”. Do you think you could set it up or have another alternate setup wherein it affects virtual bones handling the arms so that if the weapon recoils and goes up, it does not affect the camera pitch especially during non-ads or not aiming. In real life our eyes/head do not go upwards but only the weapon and arms when not aiming. Also having the camera be affected by the recoil makes a repetitive type of camera shake that is hard to fine tune or remove.
Thank you
Hey, yes, you’re very welcome to the Discord server! I’m sending you a private msg.
Regarding recoil, I don’t have plans to change it… You can see a video of a person shooting a gun and see how recoil affects the head.
If you want to remove the head movement (both the AddControllerPitchInput and the StartCameraShake), there’s already code that makes the hands move when firing, but they only move backwards and don’t actually move with each shot, they move continuously starting when you start firing and stopping when you stop firing. It’s governed by the var GunRecede in the anim BP. You could look into that and change it if you want.
Another thing to note is that shots don’t come off from the gun, but from the camera. You’d need to change that, otherwise the hand movements will only serve as visual effect. If you make shots come off from the gun you’d also have to implement some sort of zeroing system for your sights, unless you want to have bullets always hitting below where you aim.
Personally I think that removing head shake removes almost completely the impact of firing a gun and leaves it feeling very sterile…
Hi thanks for the invite. I will check out the code.
Yeah that is one of the challenges since linetrace comes from the camera. Alternatively, I have to use projectiles that shoots from the muzzle socket and as you mentioned zeroing. I will probably add a logic only if the gun is a bit pointed in the center before the fire logic can proceed.
Yup, but I rather have my own camera shake settings that I can control more subtly during fire
You can use Insurgency Sandstorm’s approach, I heard they only shoot from the camera when aiming, otherwise they shoot from the gun. This sounds like a good solution…
Hey, great product. I think I messed something up though. Clients can’t edit the guns. The blue markers dont show up, clicking to equip them does nothing and these errors show up. Any ideas what I may have messed up? Thanks.
Hello! If the player on the server can but the client can’t, it sounds like the HandlingPart var is being set on the server but isn’t being replicated to the clients (remains ‘none’ on the clients).
Make sure that the HandlingPart var is set to replicate as shown in this pic:
And make sure that this blueprint is also set to replicate:
Everything is set like that, I never changed anything in this actor, mostly just the gun parent. any idea if something done in the gun parent would cause this error? Where is handling part set? I think I might be able to backtrack to the problem. It is also worth noting that the markers do not appear on the gun when you click the part you are trying to put on the gun. I did copy paste the sockets to add more areas to put stuff on the gun but I figured that wouldn’t harm anything being it worked fine on the server. Thanks.
Ok so I found where Handling part gets set to nothing. At the other side of Server enter add part (the code in the picture) part returns invalid, however, at the start of this code, it still returns valid.
It seems that the server handlepart is refusing to be set by the client. Any ideas on how i can bypass this?
If you are actually feeding the part to the server via the ServerEnterAdd node, but when you try to get this part from this node on the server side it returns nothing, that would mean a bug in the engine’s replication which I find very unlikely.
Are you 100% sure you’re actually feeding the part to the node? Do this test just like I did in these pics below. I’ve placed a node to print the name of the part being fed on the client side and another node to print the same part on the receiving part (server side). Note that when I start adding the canted rail it’s name gets printed twice, once labeled as client and once labeled as server, meaning it was sent and received:
Yup, I already did that actually. I ended up finding a workaround by getting the name of the part from that pin and then spawning that part on the server based on the name and setting handlepart with the newly server spawned actor. Its a pretty unfavorable workaround but at least it works.
Ok so my workaround works great in viewport simulating both client and dedicated server, as well as the standalone option. Pretty much everything except in a packaged game? I’m at a complete loss. I can’t even find any ue4 documentation on any gameplay differences between packaged game and standalone launch.