![]() |
Murl Engine Lua Addon API
Version 1.0 beta
|
The IShearable property interface.
This interface provides setting and retrieving of a shear factor.
Animation controllers may call the SetShearFactor() method when shearing keys are present in a given Resource::IAnimation.
Set the shearing factor for the X axis as a function of both the Y and Z axes.
Boolean SetShearFactorX(Number xy, Number xz)
xy | The shearing factor for X relative to the Y axis. |
xz | The shearing factor for X relative to the Z axis. |
Set the shearing factor for the Y axis as a function of both the X and Z axes.
Boolean SetShearFactorY(Number yx, Number yz)
yx | The shearing factor for Y relative to the X axis. |
yz | The shearing factor for Y relative to the Z axis. |
Set the shearing factor for the Z axis as a function of both the X and Y axes.
Boolean SetShearFactorZ(Number zx, Number zy)
zx | The shearing factor for Z relative to the X axis. |
zy | The shearing factor for Z relative to the Y axis. |
Set the shearing factor for the X axis as a function of the Y axis.
Boolean SetShearFactorXY(Number xy)
xy | The shearing factor for X relative to the Y axis. |
Set the shearing factor for the X axis as a function of the Z axis.
Boolean SetShearFactorXZ(Number xz)
xz | The shearing factor for X relative to the Z axis. |
Set the shearing factor for the Y axis as a function of the X axis.
Boolean SetShearFactorYX(Number yx)
yx | The shearing factor for Y relative to the X axis. |
Set the shearing factor for the Y axis as a function of the Z axis.
Boolean SetShearFactorYZ(Number yz)
yz | The shearing factor for Y relative to the Z axis. |
Set the shearing factor for the Z axis as a function of the X axis.
Boolean SetShearFactorZX(Number zx)
zx | The shearing factor for Z relative to the X axis. |
Set the shearing factor for the Z axis as a function of the Y axis.
Boolean SetShearFactorZY(Number zy)
zy | The shearing factor for Z relative to the Y axis. |
Get the shear factor for the X axis as a function of Y.
Number GetShearFactorXY()
Get the shear factor for the X axis as a function of Z.
Number GetShearFactorXZ()
Get the shear factor for the Y axis as a function of X.
Number GetShearFactorYX()
Get the shear factor for the Y axis as a function of Z.
Number GetShearFactorYZ()
Get the shear factor for the Z axis as a function of X.
Number GetShearFactorZX()
Get the shear factor for the Z axis as a function of Y.
Number GetShearFactorZY()