Skip to content
hannes edited this page Feb 15, 2023 · 31 revisions

UniMenu (Universal Menu)

Imagine consistency across your whole pipeline. Controlling the workflow of a whole team from a single file.

  graph LR;
      B{TEAM1} --> App1 --> App2 -->App3;
      C{TEAM2} --> App4 --> App5 -->App6;
Loading

UniMenu let's you create menus for all your apps from the same config.

  graph TD;
      Config-->App1;
      Config-->App2;
      Config-->App3;
Loading

Great for creating menu configs that are shared between applications. e.g. a VFX or game pipeline. The modularity of UniMenu let's you load different menus for teams & projects.

  graph TD;
      Studio-Config-->UserMenu;
      Team-Config-->UserMenu;
      Project-Config-->UserMenu;
Loading

Developed as a pure Python module to avoid any compiling, and just plug & play!

To learn more about implementing, checkout the features overview

Clone this wiki locally