Personal mirror alpha is bad.
tracked
GenesisAria
This method of doing transparency in mirrors is objectively inferior to the mod's. Many shader creators have spent a lot of time and work on traying to create very good and workable transparent mirrors. There are a number of methods, but most of them require a bunch of extra complicated work with the shader to make them viable for faded alpha to work - hence the common technique of using black pixel cutout.
The huge problem with this mirror is that EVERYTHING that is rendering in transparent renderqueue cuts out of any meshes that are behind them, and in some cases completely invisible. Blushes on avatars, and transparent hair bangs will always cut out an avatar's face and this is very jarring. This effect is NOT desired, and a great amount of effort was put into avoiding it.
Certain HDR transparent materials go negative in the mirror as well.
Log In
GenesisAria
It is possible to correct some of the behaviour to a limited degree using a colour mask in shader: "RGB" or enum "14" prevents updating alpha which lets it layer on top cleanly (good for transparent eye textures or blushes), but it becomes invisible if the environment is excluded from camera, or if skybox is behind the transparent surface.
Issue, this requires technical knowledge and is limited.
d
d4rkpl4y3r
I severely dislike the custom black pixel cutout mirrors for their lack of anti aliasing. In my opinion this is better solved by getting shader authors to write proper alpha with their fade transparency modes.
For example, a simple fade shaders blend mode is
Blend SrcAlpha OneMinusSrcAlpha
this can easily be replaced by
BlendOp Add, Max
Blend SrcAlpha OneMinusSrcAlpha, One One
With this we can have transparent mirrors with nice anti aliasing instead of the ugly black pixel aliasing that the cutout mirrors have.
GenesisAria
d4rkpl4y3r: I agree, the black pixel is ugly, but it was a very cost-efficient method that was pretty reliable. However statements like "all shader creators should use X non-standard method of doing Y" is unrealistic. It's never going to happen, and trying to make some closed circle of proprietary developers is not a healthy solution.
I've seen multiple mirrors solve alpha and even add depth, but they are not the most cost efficient, and they are funky to set up, hence their lack of proliferation. Kilerbomb's mirror in Audio Orbs is probably one of the cheaper examples.
Scout - VRChat Head of Quality Assurance
tracked
GenesisAria
I've messed with this somewhat on my own time, trying to make clean Transparent PNG's from avatars and also seeing if i can make a mirror become an alpha fade by using shaders that apply to the mirror only - the issue is that if i do things like kill the skybox with a shader, i just get frame-buffer leftover pixels rather than alpha.
There may be a way to apply custom data to pixels when everything but a single layer (avatar layer) is culled, allowing to pass through alpha data while keeping the depth of overdrawn materials using scripting methods rather than shader hacks, but i’m not sure. This would require research.
edit: not sure if this would be helpful or not https://stackoverflow.com/questions/52882878/how-to-get-order-independent-transparency-in-vr-unity-working