jME 3.10.0-beta1
jMonkeyEngine Hub
June 7, 2026
To make it part of the material pipeline we would need to standardize a rendering pipeline with one or more compute stages, probably not something we would want to do in jme, since computer shaders are not available, or convenient, in all our target platforms.
I think you’d better implement it as a custom RenderPipeline (see com.jme3.renderer.pipeline.ForwardPipeline ) , basically instead of relying on renderManager.flushQueue() to do the rendering, you would skip that call and implement your own logic through compute shaders.
Discussion in the ATmosphere