Radegast.Rendering.Bone.getdeform C# (CSharp) Method

getdeform() public method

public getdeform ( ) : Matrix4
return Matrix4
        public Matrix4 getdeform()
        {
            if (this.parent != null)
            {
                return mDeformMatrix * parent.getdeform();
            }
            else
            {
                return mDeformMatrix;
            }
        }