From 0bfab637f49f1f3b3f43334829eb1898a1090fd7 Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 6 May 2020 07:22:09 -0500 Subject: [PATCH] show point count in debug statement --- procedural-placement/Assets/PointRendering.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/procedural-placement/Assets/PointRendering.cs b/procedural-placement/Assets/PointRendering.cs index 0fa9203..d687ef8 100644 --- a/procedural-placement/Assets/PointRendering.cs +++ b/procedural-placement/Assets/PointRendering.cs @@ -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"); } }