asset tracking support

It would be nice if krakatoa supported the asset-tracking feature in max.

In the meantime I was hope some tools might assist in scene management. Here is a snippet I made to find the dependant .prt files.

scn = for i in $geometry where (classof i.baseobject == KrakatoaPRTLoader) collect i
for j in scn do
(
	format "$'%'\n" j.name to:listener
	for k in j.filelist do
	(		
			format "\t%\n" k to:listener
			if (doesfileExist k) == false do print "Not Found!!!"
	)
)

Ben.

I second that. I have a scene with many of the same PRT Loaders and switching out the path in the asset tracker would be nice.