View Full Version : 3Ds Max 2009 UV unwrap hotkey question
breakneck
07-29-2010, 02:43 PM
hey all, I've been looking but I can't find the answer. Is there a hot key for this?
http://i83.photobucket.com/albums/j298/breakneck_rust/uvs_question_01.jpg
PhilipK
07-29-2010, 03:52 PM
Not by default, but you can add one yourself:
"Customize > Customize User Interface" then choose "UVW Unwrap" in "Group" and scroll down till you find "TV Element Mode". And just give that a hotkey of choise.
Hope that helps :)
renderhjs
07-29-2010, 08:39 PM
TexTools has a macroscript that extends the selection. If you have faces selected it will select the associated shells (just like that checkbox). If you have edges selected it will loop that edge selection.
If you don't bother installing TexTools, here is the script as standalone:
macroScript context_extend_selection category:"TexTools" ButtonText:"Extend Selection" toolTip:"Extend Selection"
(
undo on(
local objs = modPanel.getCurrentObject();
if (classof (objs) == Unwrap_UVW ) then (
local _mode =objs.unwrap2.getTVSubObjectMode();
if (_mode == 2)then(--edges
objs.unwrap2.uvEdgeSelect();
--$.modifiers[#unwrap_uvw].unwrap5.geomEdgeLoopSelection ()
)else if(_mode == 3)then(
--faces
objs.unwrap2.selectElement();
)
)
--)
)
)
run that script and then from the customize menu in the TexTools category assign it to a shortcut.
Autocon
07-30-2010, 01:31 AM
Not by default, but you can add one yourself:
"Customize > Customize User Interface" then choose "UVW Unwrap" in "Group" and scroll down till you find "TV Element Mode". And just give that a hotkey of choise.
Hope that helps :)
Honestly it seems these 3D modeling programs go out of the way to give the most unhelpful naming to useful things.
TV Element Mode? where in the hell did they get TV from!
Thanks for that one though PhilipK. I always just assumed that was un-hotkeyable. Use it all the time and now I can has hotkey :)
renderhjs
07-30-2010, 01:37 AM
TV = TextureVertex
breakneck
07-30-2010, 09:18 AM
yea, thanks for the tips guys. . . I would of never guess TV element mode.
vBulletin® v3.8.4, Copyright ©2000-2013, Jelsoft Enterprises Ltd.