Entity:EnableMatrix
Description
Can be used to apply a custom VMatrix to the entity, mostly used for scaling the model by a Vector.
To disable it, use Entity:DisableMatrix.
If your old scales are wrong due to a recent update, use Entity:SetLegacyTransform as a quick fix.
The matrix can also be modified to apply a custom rotation and offset via the VMatrix:SetAngles and VMatrix:SetTranslation functions.
Arguments
Example
To scale a prop's height by 4x
local scale = Vector(1,1,4)
local mat = Matrix()
mat:Scale(scale)
prop:EnableMatrix("RenderMultiply", mat)