I just noticed the ToString in the source, I can use this, parse the string and get the values ><
public override string ToString()
{
return string.Format("[Transform]" +
" Matrix(" +
"{0}, {1}, {2}," +
"{3}, {4}, {5}," +
"{6}, {7}, {8}, )",
m00, m01, m02,
m10, m11, m12,
m20, m21, m22);
}
float m00, m01, m02;
float m10, m11, m12;
float m20, m21, m22;
I'm joking of course, I figured another way to calculate it.