Ejemplo n.º 1
0
 private void profile(string[] param)
 {
     Cheat._profileBegin = !Cheat._profileBegin;
     if (Cheat._profileBegin)
     {
         ProfilerHelper.Begin();
     }
     else
     {
         ProfilerHelper.End();
     }
 }
Ejemplo n.º 2
0
 private void OnGUI()
 {
     if (GUILayout.Button("profiler", new GUILayoutOption[0]))
     {
         this._begin = !this._begin;
         if (this._begin)
         {
             ProfilerHelper.Begin();
         }
         else
         {
             ProfilerHelper.End();
         }
     }
 }