Announcements

Between mid-October and November, the content on AREA will be relocated to the Autodesk Community M&E Hub and the Autodesk Community Gallery. Learn more HERE.

Maya Custom UI

Maya Custom UI

laise.medroom
Explorer Explorer
4,369 Views
2 Replies
Message 1 of 3

Maya Custom UI

laise.medroom
Explorer
Explorer

Hi, I'm currently making a tool for maya, and I wanted to level up my UI appearances.

 

I'm wondering how can I create a custom panel like this one, specially the main header with bigger and bolder fonts, different font types, custom buttons/icons, image previews...

 

Is there any documentation out there on this? Thank you.

laisemedroom_0-1647286896588.png

 

0 Likes
Accepted solutions (1)
4,370 Views
2 Replies
  • UI
Replies (2)
Message 2 of 3

Kahylan
Advisor
Advisor

Hi!

 

I'm not sure how much you can do using MEL, but you should find information to what you can and can't do in this doc:

 

https://download.autodesk.com/us/maya/2010help/Commands/cat_Windows.html

 

If it is a python program, the Library that is mostly used to created custom panels/UI Elements is "QT.Widgets".

 

https://doc.qt.io/qt-5/widget-classes.html

 

I hope this helps!

Message 3 of 3

g2m.agent
Collaborator
Collaborator
Accepted solution

This plugin should be written in Python, so its UI should be written in Pyside2. Maya has Pyside2 built in.

You can refer to this:
https://help.autodesk.com/view/MAYAUL/2022/ENU/?guid=Maya_SDK_Maya_Python_API_Working_with_PySide_in...

 

and you have to learn the Qt framework yourself.