I have found similar topics but not the full answer. (How can I get world space position in shaderPass?) Where i am missing the getViewPosition()
in
[quote="linsanda, post:1, topic:37051"]
float depthTx = texture2D(tDepth,vUv).r;
float viewZ = getViewZ( depthTx );
float clipW = cameraProjectionMatrix[2][3] * viewZ + cameraProjectionMatrix[3][3];
vec4 e = getViewPosition(vUv,depthTx,clipW);
vec4 wPos = CameraMatrixWorld*e;
gl_FragColor = wPos;
[/quote]
I am trying to get the world position independantly of the camera ( orbiting ), I gather i have to use the cameraMatrix, how?
This is my current code
vertexShader: /* glsl */ `
varying vec2 vUv;
varying vec3 wpos;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}`,```
````Preformatted text`
uniform sampler2D tDepth;
uniform float cameraNear;
uniform float cameraFar;
uniform mat4 cameraProjectionMatrix;
uniform mat4 cameraWorldMatrix;
varying vec2 vUv;
varying vec3 wpos;
#include <packing>
float getLinearDepth( const in vec2 screenPosition ) {
#if PERSPECTIVE_CAMERA == 1
float fragCoordZ = texture2D( tDepth, screenPosition ).x;
float viewZ = perspectiveDepthToViewZ( fragCoordZ, cameraNear, cameraFar );
return viewZToOrthographicDepth( viewZ, cameraNear, cameraFar );
#else
return texture2D( tDepth, screenPosition ).x;
#endif
}
float getViewZ( const in vec2 screenPosition ) {
float fragCoordZ = texture2D( tDepth, screenPosition ).x;
float viewZ = perspectiveDepthToViewZ( fragCoordZ, cameraNear, cameraFar );
return viewZ;
}
void main() {
float depth = getLinearDepth( vUv );
float viewZ = getViewZ( vUv );
float clipW = cameraProjectionMatrix[2][3] * viewZ + cameraProjectionMatrix[3][3];
vec4 e = getViewPosition(vUv,depth,clipW);
vec4 wPos = cameraWorldMatrix*e;