mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix cast
This commit is contained in:
parent
8e4d56a8c5
commit
3cde37241b
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ class App(QtWidgets.QWidget):
|
|||
if cmds.pluginInfo('vrayformaya', query=True, loaded=True):
|
||||
self.echo("Getting vray proxy nodes ...")
|
||||
vray_proxies = set(cmds.ls(type="VRayProxy"))
|
||||
nodes = [set(item["nodes"]).difference(vray_proxies)]
|
||||
nodes = list(set(item["nodes"]).difference(vray_proxies))
|
||||
if vray_proxies:
|
||||
for vp in vray_proxies:
|
||||
vrayproxy_assign_look(vp, subset_name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue