How to load Node Editor snippet?

Found this example (https://playground.babylonjs.com/#AJA7KA#8) in the documentation:

It loads these two snippets:

await advancedTexture.parseFromSnippetAsync("E92W52");
await advancedTexture.parseFromSnippetAsync("I59XFB#11");

Is there a way to open/download these two snippets to better understand how they were put together?

You can view and edit the one that’s loaded, using the inspector like below to open the embedded GUI editor and then changes are seen in the live PG preview, which is pretty awesome. :smiley: You can also save/download it from there.

Also you can use the snippet IDs in the playground to derive the URLs like below:
https://gui.babylonjs.com/#I59XFB#11
https://gui.babylonjs.com/#E92W52

2 Likes

@Blake sweet, it wasn’t clear it’s the GUI editor (or one exists), thanks a bunch!

1 Like