SetUnitScalePercent

Parameters
whichUnit unit
percentScaleX real
percentScaleY real
percentScaleZ real
comment
patch

1.00

Source
Blizzard.j
return type
nothing
Source code
function SetUnitScalePercent takes unit whichUnit, real percentScaleX, real percentScaleY, real percentScaleZ returns nothing
    call SetUnitScale(whichUnit, percentScaleX * 0.01, percentScaleY * 0.01, percentScaleZ * 0.01)
endfunction