Notifications
Clear all

[Closed] Select Objects from UVW Unwrap

Hi, I’d like request a script that selects objects from selected UV shells when in UV unwrap modifier. The images describe what I need more clearly.
Thank you.

before running the script:
http://postimg.org/image/5i0dbqfet/
after running the script:
http://postimg.org/image/y6dbeyhl1/

2 Replies
if iskindof (modi = modpanel.getcurrentobject()) Unwrap_UVW do
(
	nodes = for node in (refs.dependentnodes modi) where not (modi.getSelectedPolygonsByNode node).isempty collect node
	if nodes.count == 0 then clearselection() else select nodes
)
1 Reply
(@zarko)
Joined: 11 months ago

Posts: 0

Thank you Dennis this is exactly what I needed