中文
Appearance
Matrix4x4.SetRow(index, column)
Matrix4x4
设置矩阵某一行的数据。
number
Vector4
void
let matrix = new Matrix4x4(); let column = new Vector4(1,1,1,1); //设置矩阵第一列的数据 matrix.SetRow(0, column);