Tag: Unity Architecture
-
Single Entry Point in Unity

(TLDR at the bottom) The Idea For a game project within Unity I had the idea to create a single class that has an Awake, Start, Update and FixedUpdate function. The reason for that was to have a single entry point into these functions, a central place that kicks off the logic. This is of…