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]; }