I am using the Three.js node system to render some stuff in WebGPU. It seems I can, to some extent, write my own raw WGSL using wgslFn()
. However, it seems I have to pass all its input, including uniforms, as parameters to the WGSL function.
Now assume I have a material with lots of constant properties. Example below:
const material = new MeshBasicNodeMaterial();
const myColorNode = Nodes.wgslFn(`
fn calculateColor(a: f32, b: f32, c: f32, d: f32, e: f32, f: f32, g: f32, h: f32, i: f32) -> vec4<f32> {
// ... My colour calculations based on the parameters ...
return color;
}
`);
material.colorNode = myColorNode({a, b, c, d, e, f, g, h, i});
where a, ..., i
are floats or float uniforms describing the material properties. This works fine, and I understand that the node system will take care of the uniform handling if I define the parameters as uniforms. However, in my WGSL code, I must still define all of these as explicit function parameters. Now if I use a series of helper functions in my shader code, this quickly becomes very clunky.
So my question is, is there currently a way to just pass the parameters as uniforms to the material, and access them globally from within my WGSL code, as I would do in WebGL? I know that the WGSL builder does create a struct of uniforms, but I can’t access them directly in WGSL as their names are generated, rather than set by me.
I am also able to declare uniforms in my WGSL code, but have not found a way to populate them from the JS side through Three.js’ interfaces.
I’d be very eager to know whether this is possible and how it can be done.