Announcement

Collapse
No announcement yet.

Should I be concerned about this error?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Should I be concerned about this error?

    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:


    Click image for larger version

Name:	image.png
Views:	110
Size:	22.3 KB
ID:	1169559​​

  • #2
    NpPointsBlinn is an Arnold node if I'm not mistaken. They most likely need to be replaced with V-Ray/Phoenix ones.
    Aleksandar Hadzhiev | chaos.com
    Chaos Support Representative | contact us

    Comment


    • #3
      That's interesting as I don't have Arnold even installed.

      Comment


      • #4
        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.
        https://www.artstation.com/damaggio

        Comment


        • #5
          damaggio, can you recommend a cleanup script?

          Comment


          • #6
            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.
            https://www.artstation.com/damaggio

            Comment

            Working...
            X