Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
derekShaheen committed Mar 11, 2024
2 parents 92cd2bc + 231d1bf commit 5fd2fc3
Show file tree
Hide file tree
Showing 20 changed files with 1,110 additions and 779 deletions.
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("4124fadb-8531-4922-be3f-526020e5406a")]
[assembly: Guid("70cf1763-3ba1-477c-a53f-f74447764d9c")]

// Version information for an assembly consists of the following four values:
//
Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("2.0.2.3")]
[assembly: AssemblyFileVersion("2.0.2.3")]
409 changes: 270 additions & 139 deletions SkToolbox/Controllers/CommandHandler.cs

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion SkToolbox/Controllers/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using SkToolbox.Controllers;
using System;
using UnityEngine;

namespace SkToolbox
Expand All @@ -19,7 +20,8 @@ public static void Debug(string inputString, bool prefix = true)
{
inputString = Settings.Console.OutputPrefix + inputString;
}
UnityEngine.Debug.Log(inputString);
//UnityEngine.Debug.Log(inputString);
Console.WriteLine(inputString);
}
}
}
Loading

0 comments on commit 5fd2fc3

Please sign in to comment.