I have a first person game, and I want to attached the weapon to the third person mesh for all the client and the server, but when it’s locally controlled ( current player), I want to attach it to the firstperson mesh.
So the Weapon property, is replicated, I’ve added an onRep callback, it is executing it, it is executing the Code but the “detach” from third and Attach to first, isn’t working. Maybe I’m missing something.
I’m quite new.
void UCombatComponent::OnRep_EquippedWeapon()
{
ClientEquippedWeaponOnMesh();
}
void UCombatComponent::ClientEquippedWeaponOnMesh() const
{
if (EquippedWeapon && Character)
{
if (Character->IsLocallyControlled())
{
// Detach the weapon from any previous attachment
EquippedWeapon->DetachFromActor(FDetachmentTransformRules::KeepWorldTransform);
if (const USkeletalMeshSocket* HandSocket = Character->GetFirstPersonMesh()->GetSocketByName(EquippedWeapon->GetHandSocketName()))
{
HandSocket->AttachActor(EquippedWeapon, Character->GetFirstPersonMesh());
}
}
}
}
So If ever someone have the same issues, or is asking for the same question, I’ve finally went the weapon have 2 meshes. 1 for ThirdPerson, and 1 for FirstPerson. I then, attach the Firstperson one when is locally controlled ( just for optimization I guess).