<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Xref Scene filter in layer/object explorers in 3ds Max Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13798591#M94673</link>
    <description>&lt;P&gt;hell&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16266659"&gt;@tbusseyA33GU&lt;/a&gt;, thank you for posting the question about Xref Scene filter in layer/object explorers. I assume that you may need a bit of time to work on this issue, please feel free to find if the information provided is beneficial to you. Also, you could try using the suggestion provided by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5077537"&gt;@A娘&lt;/a&gt;. Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5077537"&gt;@A娘&lt;/a&gt;&amp;nbsp;for sharing additional information.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Sep 2025 16:06:11 GMT</pubDate>
    <dc:creator>haifeng_yuSEVKN</dc:creator>
    <dc:date>2025-09-05T16:06:11Z</dc:date>
    <item>
      <title>Xref Scene filter in layer/object explorers</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13773547#M94553</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Is there any way to filter out xref scene objects from the layer/object explorers?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;They don't seem to respect the xref filter (I'm assuming this only works on xref objects, not xref scenes)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 10:22:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13773547#M94553</guid>
      <dc:creator>tbusseyA33GU</dc:creator>
      <dc:date>2025-08-19T10:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Xref Scene filter in layer/object explorers</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13774852#M94555</link>
      <description>&lt;P&gt;add a custom filter property when needed&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;global xrefobjectsel=#()
global AEI_objlayer_sel_delay = timestamp()
fn travelnode o =
(
	tempsel= for oo in o.children collect oo
	for oo in o.children do
		if oo.children.count &amp;gt; 0 do 
			join tempsel (travelnode oo)
	tempsel
)
fn refreshxref =
(
	xrefobjectsel=#()
	count=xrefs.getXRefFileCount()
	if count == 0 then
	 	return 0
	else
		for i = 1 to count do 
		(
			aXref=xrefs.getXRefFile i
			xrefsel = for o in aXref.tree.children collect o
			for o in xrefsel where o.children.count &amp;gt; 0 do 
				join xrefsel (travelnode o)
			append xrefobjectsel xrefsel
		)
	AEI_objlayer_sel_delay = timestamp()
)
fn getxrefindex theNode = 
(
	if timestamp() - AEI_objlayer_sel_delay &amp;gt; 5000 do
		refreshxref()
	if xrefobjectsel.count == 0 then
		return 0
	else
	for i = 1 to xrefobjectsel.count do 
	(
		if finditem xrefobjectsel[i] thenode do 
			return i
	)
	0
)
SceneExplorerManager.addReadOnlyProperty "xrefindex" getxrefindex&lt;/LI-CODE&gt;&lt;P&gt;run script above , there will be a new filter called&amp;nbsp;xrefindex added to list , active advanced filter and add rule&amp;nbsp;xrefindex with 0 , xref scene objects will be removed , rule with 1 , only objects in 1st xref file shows&lt;BR /&gt;when add xref scene , layer explorer should be closed or not add&amp;nbsp;xrefindex column or rule&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 03:16:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13774852#M94555</guid>
      <dc:creator>A娘</dc:creator>
      <dc:date>2025-08-20T03:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Xref Scene filter in layer/object explorers</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13787719#M94620</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16266659"&gt;@tbusseyA33GU&lt;/a&gt;, thanks very much for the information. I noticed that it seems like we are not able to&amp;nbsp;filter out Xref scene objects from the layer/object explorers. However, we can load/unload the objects in Xref Scene editor. May I ask how you would like to fiter out the Xref objects in the explorers? Are you trying to hide/unhide objects or move them to certain layers? Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2025 20:48:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13787719#M94620</guid>
      <dc:creator>haifeng_yuSEVKN</dc:creator>
      <dc:date>2025-08-28T20:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Xref Scene filter in layer/object explorers</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13794450#M94654</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16266659"&gt;@tbusseyA33GU&lt;/a&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;Could you kindly confirm that you followed our colleague &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13384615"&gt;@haifeng_yuSEVKN&lt;/a&gt;'s instructions? That way, we could help you more effectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 10:50:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13794450#M94654</guid>
      <dc:creator>joaquim.moral</dc:creator>
      <dc:date>2025-09-03T10:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Xref Scene filter in layer/object explorers</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13798591#M94673</link>
      <description>&lt;P&gt;hell&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16266659"&gt;@tbusseyA33GU&lt;/a&gt;, thank you for posting the question about Xref Scene filter in layer/object explorers. I assume that you may need a bit of time to work on this issue, please feel free to find if the information provided is beneficial to you. Also, you could try using the suggestion provided by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5077537"&gt;@A娘&lt;/a&gt;. Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5077537"&gt;@A娘&lt;/a&gt;&amp;nbsp;for sharing additional information.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 16:06:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/xref-scene-filter-in-layer-object-explorers/m-p/13798591#M94673</guid>
      <dc:creator>haifeng_yuSEVKN</dc:creator>
      <dc:date>2025-09-05T16:06:11Z</dc:date>
    </item>
  </channel>
</rss>

