Skip to content

Use case

hannes delbeke edited this page Feb 20, 2025 · 2 revisions

UniMenu (Universal Menu)

😵Use case

Your studio has several teams, several projects, several applications to support.
Each menu setup is different, and maintenance can be tricky.

  graph LR;
      B{TEAM1} --> App1 --> App2 -->App3;
Loading

⚙️UniMenu

Imagine a consistent workflow across your whole pipeline, controlled from a single file.
UniMenu let's you create menus for all your applications from the same config.
Great for a VFX or game pipeline.

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

🧩Modular

The modularity of UniMenu allows you to adapt your menus based on context.
E.g. different menu-configs for user-roles, teams & projects. Configs can be loaded additively.

  graph TD;
      Studio-Config-->App-Menu;
      Team-Config-->App-Menu;
      Project-Config-->App-Menu;
Loading

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

🚀Get started!

To learn more about implementing, checkout the features overview or the Quick start

Clone this wiki locally