Announcements

Between mid-October and November, the content on AREA will be relocated to the Autodesk Community M&E Hub and the Autodesk Community Gallery. Learn more HERE.

Creating Primitives In Isolation Mode?

Creating Primitives In Isolation Mode?

The-Digital-Shaman
Advocate Advocate
931 Views
7 Replies
Message 1 of 8

Creating Primitives In Isolation Mode?

The-Digital-Shaman
Advocate
Advocate

Hi,

Is it possible?

I mean, so I could see it.

 

Cheers for any info,
DS

0 Likes
Accepted solutions (1)
932 Views
7 Replies
Replies (7)
Message 2 of 8

Kahylan
Advisor
Advisor

Hi!

 

I assume that by "Isolation Mode" you mean "Isolate Select".

 

Go to your Viewports "Show" Menu and turn on the setting "Isolate Select -> Auto Load New Objects"

 

Stg.png

 

I hope it helps!

0 Likes
Message 3 of 8

The-Digital-Shaman
Advocate
Advocate

Hi Kahalan,

Thanks for the reply.

I have it ticked on all the time. It's not this.

By isolation mode I mean runtime command SelectIsolate;

{ string $currentPanel = `getPanel -withFocus`; int $match = `gmatch $currentPanel "modelPanel*"`; if($match == 1) { string $state = `isolateSelect -q -state $currentPanel`; if ($state) enableIsolateSelect $currentPanel false; else enableIsolateSelect $currentPanel true; }}

I recorded what happens when I create a primitive while in IsolateSelect mode.


 

 

0 Likes
Message 4 of 8

Kahylan
Advisor
Advisor
Accepted solution

Hmm, sadly I couldn't reproduce the issue. Since even if I toggle isolate select with this command, the new objects show up as expected.

 

Now what you could try is to use the isolateSelect command instead of enableIsolateSelect which is a toggle command with no real documentation...

{ string $currentPanel = `getPanel -withFocus`; int $match = `gmatch $currentPanel "modelPanel*"`; if($match == 1) { string $state = `isolateSelect -q -state $currentPanel`; if ($state) isolateSelect -s false $currentPanel; else isolateSelect -s true $currentPanel ; }}

but I'm not sure if that helps, since it works for me either way, so I couldn't test it out.

Message 5 of 8

amaterasu-qbb
Collaborator
Collaborator

Hi! @The-Digital-Shaman .

This is a Maya specification. I don't think you can do it, and I don't think you can change it in Preferences either.
If you isolate, it will only show the number of selected items. If you have not selected any objects (including those you have created), they will exist but will not be visible.
If you have a complex scene with many objects, it is better to hide other objects when Creating Primitives.

Message 6 of 8

The-Digital-Shaman
Advocate
Advocate

Thanks Amaterasu,

That's a bummer.

3dsmax got it right long time ago.

Kahylan,
Your script just makes everything disappear, including selection.

 

 

I have made another recording.

Spheres and planes show up at the end of creation in isolateSelect mode.

Boxes, cones do not.

 

Maya is so inconsistent...

 

 

 

0 Likes
Message 7 of 8

amaterasu-qbb
Collaborator
Collaborator

@The-Digital-Shaman wrote:

Kahylan,
Your script just makes everything disappear, including selection.



@The-Digital-Shaman wrote:

Maya is so inconsistent...


ikr? @Kahylan helps me a lot.

This Maya forum has an Idea forum. You or I can post about this instead.
I can post your request if you like.

0 Likes