You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What can't you do?
Currently, there's no easy way to handle shader passes. The way to deal with multiple shader passes is to manually render the object twice with a RenderEntity and calling drawing the same object multiple time using different materials.
How would you like it to work?
ShaderPassCount(2);
#if (S_SHADER_PASS == 0)
// Do shader pass 1#elif (S_SHADER_PASS == 1)
// Do shader pass 2#endif
What have you tried?
Currently, the only other way to deal with this is to force an object to render right after the other manually. One method of this is to use the DoRender override for RenderEntities.
What can't you do?
Currently, there's no easy way to handle shader passes. The way to deal with multiple shader passes is to manually render the object twice with a RenderEntity and calling drawing the same object multiple time using different materials.
How would you like it to work?
What have you tried?
Currently, the only other way to deal with this is to force an object to render right after the other manually. One method of this is to use the DoRender override for RenderEntities.
Additional context
Define an extra pass should just render the object multiple times in successive order and rendering on the correct pass
The text was updated successfully, but these errors were encountered: