Can't load shaderMaterial into my scene

Hi guys, I have created this basic shader material: Babylon.js Node Material Editor
The problem I am having is that when I load it into my scene it, it seems like it’s not doing anything (the sphere remains black).

It is probably a very simple adjustment but I can’t understand why it is not working.
Thanks!

Hi! Do you want to show us how you load the nme to your scene? playground maybe?

hi, sorry I was going to attach it but I forgot! here it is: https://playground.babylonjs.com/#NGS9AU#519

You need to associate the material to the parsed snippet. You can’t just create a node material, because the playground doesn’t know that this NME exists.

Here is a simple example of how to achieve that:

GUI Example | Babylon.js Playground (babylonjs.com)

oh I see, thanks a lot!!