View Full Version : Hiding faces?
Dudeman 12-07-2004, 09:00 PM I don't remember seeing a thread about how to hide faces of a mesh.
How do you hide faces of a mesh?
The reason I need this feature is, for manipulatiing a blendshape.
I want to remove the unecessary clutter.
Any help?
btw- I've always appreciated the help I have received in the past. This is an EXCELLENT site.
-Dudeman:thumbsup:
|
|
Dudeman
12-07-2004, 09:05 PM
Ok I did a search on the forum.....:scream:
I guess I have to have Bonus tools installed.
No other way?
-Dudeman:thumbsup:
stallion151
12-08-2004, 01:00 AM
you could download a script package called TinyTools.
or just use this which i extracted from it.
global proc TT_toggleIsolate()
{
string $currPanel = `getPanel -withFocus`;
if ("" != $currPanel && ("modelPanel" == `getPanel -to $currPanel`))
{
int $isolate_onoff = `isolateSelect -q -state $currPanel`;
switch ($isolate_onoff)
{
case 0:
enableIsolateSelect $currPanel 1;
isolateSelect -state 1 $currPanel;
break;
case 1:
enableIsolateSelect $currPanel 0;
isolateSelect -state 0 $currPanel;
break;
default: break;
}
$isolate_onoff = `isolateSelect -q -state $currPanel`;
print("IsolateView: " + $isolate_onoff + "\n");
}
else
{
error "No modeling panel selected or invalid";
}
}
create a MEL script in your scripts folder in your documents and then in your hotkey editor create a hotkey under user, and just type:
TT_toggleIsolate;
and you have a isolate for hiding and showing faces. not sure about selecting faces to hide. sure you could edit this to reverse what happens.
Emil3d
12-08-2004, 05:54 AM
From a panel menu Show>Isolate Select>View Selected
Dudeman
12-08-2004, 05:21 PM
Thanks emil3d.
That's axactly what I need....BUT
I would like this to be for all Viewports. All the time until I decide otherwise.
And without going into every viewport to execute this action.
But this is definitely a step in the right direction. And can be used.
Thanks!
-Dudeman:thumbsup:
stallion151
12-08-2004, 09:16 PM
nah dudeman you've got it wrong that script is IsolateSelect it just toggles it on and off. Just thinking one step ahead, the default hotkey for IsolateSelect, like emil3d suggested is SHIFT + I, but there is no unIsolateSelect, so if you do like i said and apply that script to that hotkey, it will save you time from going in and out of that menu panel.
and if its a hotkey you can quickly go into panel focus and press for any viewport you want.
Dudeman
12-08-2004, 10:10 PM
Thanks Stallion.
I guess that does sound to be the best solution.
Thanks!
-Dudeman:thumbsup:
CGTalk Moderation
01-20-2006, 02:00 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.
vBulletin v3.0.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.