Author Topic: Removing an arm when equiping a weapon  (Read 711 times)

I am currently making a particular weapon and for practical reasons, I need to remove the Left Hand / Arm of the player model when he equips said weapon. Can anyone help me out?

Code: [Select]
function WeaponImage::OnMount(%this, %obj, %slot)
{
%obj.hideNode(RHand); //hides hand
%obj.hideNode(RArm); //hides arm
}

Thank you! I'll try it out and reply if something's gone wrong.