-
Notifications
You must be signed in to change notification settings - Fork 9
Home
hannes edited this page Mar 4, 2023
·
29 revisions
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;
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;
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;
Developed as a pure Python module to avoid any compiling, and just plug & play!
To learn more about implementing, checkout the features overview or the Quick start
Applications
Dev Docs
Other