Category: Tutorial
-
Google Sheets With Unity
Two videos I found super helpful We need to install the Google Sheets .Net API. The easiest way I found was to use NuGet For Unity plugin. Then search Google Sheets and install them that way. I had to download one version less than current, but other than that I had no problems. When we…
-
Unity Runtime Console
I recently made a runtime console in unity. This will be part of Goat Utils once that package gets all setup! Creating Commands/Command Flow ConsoleCommands.Add(string command, Action<string[]> action, string info); command is the full string of the command that should run some method. Like player add item action is the method/delegate that will run when the command…