Category: Game Dev

  • 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…

  • Animal Crossing Seasonal Shader

    Animal Crossing Seasonal Shader

    Ever wonder how Animal Crossing changes the colors of the environment throughout the year? Neither did I! I always figured it just set a color/texture based on the current day, and while that’s kind of true, it’s super cool how they did it for New Horizons! I have a project where I was recreating my…

  • Unity Runtime Console

    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…