Last active
February 12, 2023 12:49
-
-
Save unitycoder/c609a99fc3f14b3553ed to your computer and use it in GitHub Desktop.
Revisions
-
unitycoder revised this gist
Aug 7, 2018 . No changes.There are no files selected for viewing
-
unitycoder renamed this gist
Dec 15, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
unitycoder created this gist
Mar 27, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ var stopwatch = new System.Diagnostics.Stopwatch(); stopwatch.Start(); // your function here.. stopwatch.Stop(); //Debug.Log("Timer: " + stopwatch.Elapsed); Debug.Log("Timer: " + stopwatch.ElapsedMilliseconds); stopwatch.Reset();