/// <summary> /// Gets the value of the parameter as a matrix. /// </summary> /// <returns> /// The matrix value /// </returns> public Matrix GetValueMatrix() { XNA.Matrix xm = _param.GetValueMatrix(); Matrix m; XNAHelper.ConvertMatrix(ref xm, out m); return(m); }