Category: Game Dev

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