mgear-dev / mgear4

mGear v.4.x.x (python 3 ready) https://mgear4.readthedocs.io
MIT License
266 stars 94 forks source link

missing mgear tab at top menu of maya #76

Closed AmityAshes closed 2 years ago

AmityAshes commented 2 years ago

After drag and drop install preferences show that mgear is installed, however the mgear tab is nowhere to be seen After restarting the program, theres still no mgear tab How do I fix this ?

miquelcampos commented 2 years ago

Hello @AmityAshes are you using Maya 2022? if yes, have you installed pymel for python3? Here is more info related to that topic http://forum.mgear-framework.com/t/mgear-is-not-displayed-in-maya2022/2630

Please in the future use the forum for this kind of support question. http://forum.mgear-framework.com/ :)

Cheers!

AmityAshes commented 2 years ago

Hello Miquel I apologise for using the wrong section, I infact found the forum shortly after that post. It's my first time here and I got confused in the midst of my desperation.

Yes I have according to what maya tells me when I install the app (It says pymel for python 3 installed just like in the picture) however I think I'm discovering that, that doesn't mean it's actually installed. Thank you for assistance

Kind regards Amity

https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avast.com https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Sun, Dec 5, 2021 at 12:22 PM Miquel Campos @.***> wrote:

Closed #76 https://github.com/mgear-dev/mgear4/issues/76.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mgear-dev/mgear4/issues/76#event-5716605510, or unsubscribe https://github.com/notifications/unsubscribe-auth/AWZDTEDPVSR5YB2MRPUZMATUPM4QHANCNFSM5JMS7QRQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

bolach87 commented 2 years ago

I've the same problem. Heeeelp

Nat3Turner commented 9 months ago

I recently had a similar issue where mgear existed, it was even present as a module but no menu button.

My Solution: replace ( \modules\scripts\mgear\menu.py line 18 ) if pm.menu(menuId, exists=True): with if maya.cmds.menu(menuId, exists=True):

My testing showed that the PyMel call was returning a garbage reference to scriptEditorPanel1Window|scriptEditorPanel1|False and as the call moves recursively down, it, again, calls the menu() a second time, but now menuId == 'False'. I think PyMel has some issues in this area. I could not trackdown the ScriptEditorPanel anywhere, and found mayas original menu check worked.

I have not done thorough testing, as I only found this fix Friday.