Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Edit UVWs active texture

Seakad
Explorer

Edit UVWs active texture

Seakad
Explorer
Explorer

Such a question appeared
When, for example, I select any polygon with a texture, and open the UVWs Editor, the CheckerPattern is used by default in the window, can I make it so that the desired material is immediately selected in the list?

In a large scene, there can be 50+ materials, and such a huge list appears that it takes almost half a minute to look for the right one.

0 Likes
Reply
649 Views
4 Replies
Replies (4)

10DSpace
Advisor
Advisor

@Seakad 

 

If you have already assigned a material to your object then it should appear in the dropdown list in the UV editor rollout as shown in example below:

 

10DSpace_0-1645317314432.png

 

 

You shouldn't have to search through 50 other textures in your scene;  -- the assigned texture map should be easily seen in the dropdown.

0 Likes

Seakad
Explorer
Explorer
It appears there, but I want it to be automatically selected from the list
0 Likes

10DSpace
Advisor
Advisor

@Seakad 

 

As far as I know, there is no way for Max to automatically select one of the choices of bitmaps in the dropdown list as the default when you open the Unwrap UVW Editor.  This has to be user guided.  

 

In theory, with a few lines of maxscript  you can select one of the maps by order of appearance in the list, but you have to know the number of the map in the dropdown list.   And by the time you have opened up the list to check this, it's just one more click to select it, so that doesn't seem useful to me.     However, typically the diffuse or base_color map is the 3rd map after the 2 checker options on my installations of Max, so if you want the 3rd map to be selected you could run the following lines of maxscript (from the Maxscript Editor NOT the Maxscript listener):

 

uvwMod = $.modifiers[#Unwrap_UVW]
uvwMod.unwrap.SetCurrentMap 3

 

Copy and paste the above lines into a new Maxscript Editor Window and select Tools>Evaluate All or highlight/select the lines and select Tools>Evalaute Line Selection.  Like I said, I don't see how this is particularly useful but possibly I am not fully understanding your issue and if so please clarify.  Maybe a screenshot of your dropdown list would be helpful.

0 Likes

10DSpace
Advisor
Advisor

@Seakad 

 

I should have mentioned that the object must be currently selected for the script to work.

0 Likes