Wireframe shader

Does PlayCanvas have anything similar to this ready to use? If not, how can I do it? Thanks!

Hi @Marks,

I’m not aware of an effect like that, but enabling wireframe rendering for any entity with a render component is as simple as this:

this.entity.render.renderStyle = pc.RENDERSTYLE_WIREFRAME;
3 Likes

and use additive alpha blend mode.

2 Likes

Unfortunately simple wireframe is not enough, I need a cool looking wire frame effect ;_;. Ok, thanks for the input.

If you are looking for the glow effect, then you may want to look at Nikita’s work on the Discord server: https://discord.com/channels/408617316415307776/431916395878416384/1007537699202269234 where you might be able to combine with the render style wireframe to get a TRON like effect

2 Likes