Digital humans the art of the digital double
Ever wanted to know how digital doubles are created in the movie industry? This course will give you an insight into how it's done.
# 1 27-06-2015 , 02:27 PM
EduSciVis-er
Join Date: Dec 2005
Location: Toronto
Posts: 3,374

Icon file location - Maya 2016

Does anyone know where the tool icons are stored in Maya 2016? E.g. In the shelf editor, I can see reverseSurface.png. Where is that png file? Or how might I extract it? Or is it irretrievably locked away?

I understand that Maya now ships with high res icons for high res displays, and it would be lovely to access those.

Thanks,
Stuart

# 2 27-06-2015 , 03:22 PM
EduSciVis-er
Join Date: Dec 2005
Location: Toronto
Posts: 3,374

Got the low-res icons at least!

I found this thread, but the penultimate post doesn't export anything, it just prints out the name of all the icons, as per the "except" statement.
https://tech-artists.org/forum/showth...ing-Maya-Icons

Edit before posting: Ah, got it, I had to replace the "\" with "/" in my windows path. I guess that's what python is expecting, a bit counter-intuitive.

So now I've got ~2200 pngs (albeit not the high res versions) and ~290 svgs. Beautiful. Perhaps if I run the same command on a high-res display I might get the larger versions? Perhaps someone could verify this before I go looking for someone who has one.

Code:
from pymel.core import *
for item in resourceManager(nameFilter='*'):
    try:
        #Make sure the folder exists before attempting.
        resourceManager(saveAs=(item, "F:/Documents/maya/2016/prefs/icons/native/{0}".format(item)))    
    except:
        #For the cases in which some files do not work for windows, name formatting wise. I'm looking at you 'http:'!
        print item

Posting Rules Forum Rules
You may not post new threads | You may not post replies | You may not post attachments | You may not edit your posts | BB code is On | Smilies are On | [IMG] code is On | HTML code is Off

Similar Threads