show point count in debug statement

This commit is contained in:
Xevion
2020-05-06 07:22:09 -05:00
parent a3c7534d9e
commit 0bfab637f4

View File

@@ -66,7 +66,7 @@ public class PointRendering : MonoBehaviour {
}
float t2 = Time.realtimeSinceStartup;
Debug.Log($"{samplingMethod} generated in {t2 - t1:0.0000} seconds");
Debug.Log($"{samplingMethod} generated {_points.Count:n0} points in {t2 - t1:0.0000} seconds");
}
}