From 710ef8d6b487dd7314cc09e97d9db2439ec1661d Mon Sep 17 00:00:00 2001 From: excitedneon Date: Thu, 11 May 2017 22:17:24 +0300 Subject: [PATCH] Remove debug print --- Assets/Scripts/Util/TextTextureRenderer.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Assets/Scripts/Util/TextTextureRenderer.cs b/Assets/Scripts/Util/TextTextureRenderer.cs index ed27f8e..9350c94 100644 --- a/Assets/Scripts/Util/TextTextureRenderer.cs +++ b/Assets/Scripts/Util/TextTextureRenderer.cs @@ -66,9 +66,6 @@ namespace Cyber.Util { string Hash = CreateHash(text); if (forceRender || !Cache.ContainsKey(Hash)) { Cache[Hash] = Singleton.RenderText(text); - Term.Println("Created a new texture for:"); - Term.Println(Hash); - Term.Println("===="); } return Cache[Hash]; }