I've got a V-Ray Volume Grid that is playing a Phoenix .aur sequence and I keep getting this error but I don't know if it's something I should be concerned about:
Announcement
Collapse
No announcement yet.
Should I be concerned about this error?
Collapse
X
-
A lot of garbage can come in if you imported other models from different sources, Open the Dag outliner and inspect the file or use a clean up script.
Comment
-
Hi Hunter, I use this one for unwanted plugins but it might not resolve your particular node...If Aleks is right and it comes from Arnold then this script might remove the plugin from the scene.
If you have some basic knowledge of scrippting you can find that node in a script editor and remove it, on the other hand if the scene is rendering fine just leave it alone.
string $unknownNodes[] = `ls -type "unknown"`;
for($node in $unknownNodes) {
print( "Deleting " + $node + "\n" );
lockNode -lock 0 $node;
delete $node;
}
string $plugin;
string $unknownPlugins[] = `unknownPlugin -query -list`;
for ($plugin in $unknownPlugins)
{
unknownPlugin -remove $plugin;
}Last edited by damaggio; 10-01-2023, 08:19 AM.
- Likes 1
Comment
Comment