Guest User

Untitled

a guest
Jan 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  var outputTest:float = 0.0;
  2.  
  3. function Start ()
  4. {
  5.  
  6.     Profile.StartProfile("Start");
  7.         //my code
  8.  
  9. }
  10. function OnApplicationQuit()
  11.     {
  12.         Profile.EndProfile("Start");
  13.         Debug.Log("outputTest is " + outputTest.ToString("F3"));
  14.         Profile.PrintResults();
  15.     }
Add Comment
Please, Sign In to add comment