Development

Note

These pages detail a suggested implementation of a Model View Controller (MVC) design for Unity applications. Though this approach is very useful for most applications, programs made with Unity and other game engines are unavoidably built from stateful elements. The design approach must be adapted to account for this.

I generally suggest an adapted approach replacing the model with a Static Event Bus to maintain the value of separated data, logic, and visualization within the context of the engine:

-Twig