• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Code Set BoneScale XYZ ?

ro_sauce

Grizzled Veteran
Sep 26, 2007
3,134
329
bwhgaming.com
is it possible to to specify the scale of X Y Z independently in SetBoneScale function?
Code:
simulated function PostNetBeginPlay()
{
    super.PostNetBeginPlay();
    SetBoneScale(1.5,1,2.5,'Magazine'); //trying to change scale of x, y, z separately
}
-this doesnt work, but shows what i'm trying to do
 
is it possible to to specify the scale of X Y Z independently in SetBoneScale function?
Code:
simulated function PostNetBeginPlay()
{
    super.PostNetBeginPlay();
    SetBoneScale(1.5,1,2.5,'Magazine'); //trying to change scale of x, y, z separately
}
-this doesnt work, but shows what i'm trying to do

from looking at the original function set in Actor, I would say no but I hope someone else can help you.

native final function SetBoneScale( int Slot, optional float BoneScale, optional name BoneName );
 
Upvote 0