Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_DbgUI.c
Go to the documentation of this file.
1 class SCR_DbgUI
2 {
8  static void Matrix(string label, vector matrix[4])
9  {
10  DbgUI.Text(label + "[0] = " + matrix[0].ToString());
11  DbgUI.Text(label + "[1] = " + matrix[1].ToString());
12  DbgUI.Text(label + "[2] = " + matrix[2].ToString());
13  DbgUI.Text(label + "[3] = " + matrix[3].ToString());
14  }
20  static void Quat(string label, float quat[4])
21  {
22  DbgUI.Text(label + "[0] = " + quat[0].ToString());
23  DbgUI.Text(label + "[1] = " + quat[1].ToString());
24  DbgUI.Text(label + "[2] = " + quat[2].ToString());
25  DbgUI.Text(label + "[3] = " + quat[3].ToString());
26  }
27 };
SCR_DbgUI
Definition: SCR_DbgUI.c:1