Minecraft has a crosshiar that applies the opposite texture of what you are looking at to the crosshair to make it more visible.
Could you do this with a negative shader and a BackBufferCopy and what is the structure?
Then you just need to use a TextureRect (or similar) node with a crosshair that has pixels where you want the inverted effect to be, and then it should work.
Yes, a negative shader like @TwistedTwigleg says should work. One thing to keep in mind is that it will look correct in GLES2 but that same shader will look strange in GLES3 (due to different color spaces, I still haven't totally figured it out). For something simple like this it probably won't matter but if you are getting weird results that might be the problem.
Comments
Welcome to the forum @f24816!
I have not tested it myself, but I think a shader like this should work:
Then you just need to use a TextureRect (or similar) node with a crosshair that has pixels where you want the inverted effect to be, and then it should work.
Yes, a negative shader like @TwistedTwigleg says should work. One thing to keep in mind is that it will look correct in GLES2 but that same shader will look strange in GLES3 (due to different color spaces, I still haven't totally figured it out). For something simple like this it probably won't matter but if you are getting weird results that might be the problem.
It make sense but I also tried to use visual shader and this is as far as I got.
This is how I did it eventually.