this post was submitted on 03 Sep 2023
11 points (100.0% liked)

Godot

5675 readers
26 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

!roguelikedev@programming.dev

Credits

founded 1 year ago
MODERATORS
 

I was seeing a video on common tricks FPS games use, and one of them was having the weapon render on a higher and/or separate layer to avoid having it clip with other objects in the world. How would something like this be done in Godot?

all 5 comments
sorted by: hot top controversial new old
[–] bruce965@lemmy.ml 3 points 1 year ago

You could also render in a viewpoint, and then apply that viewpoint to a full screen quad. It might have performance penalties, though; I've never profiled viewports.

[–] psycotica0@lemmy.ca 1 points 1 year ago

This is a hack, but if nothing else you could check the "transparent" flag, but have basically 100% alpha. Things that are transparent have to draw last so they can be transparent over stuff.

Hmm... Though they probably still respect the Z-buffer...

Maybe try this, but it may not work.

[–] laenurd@lemmy.lemist.de 1 points 1 year ago* (last edited 1 year ago) (1 children)

As other commenters have said, the proper way of achieving this would be to set the materials of all relevant objects (i.e. those that should be occluded and the occluder) to transparent, which puts them in the transparency render pipeline which renders transparent objects in a back-to-front order. If you want your object to always be "on top", you can set its sorting offset (in the VisualInstance3D group) to a high value. I've made a quick demo video illustrating what I am talking about:

(If the embed doesn't work, the url is https://files.catbox.moe/b3zyiu.webm )

Edit: A "separate" layer, as you asked, could be achieved by doing what @bruce965@lemmy.ml suggested, although I'm not sure whether getting camera moves and lighting to match when drawing to different viewports is feasible.

[–] bruce965@lemmy.ml 2 points 1 year ago

There is a node that keeps cameras synchronized, I can't recall the name right now, but it's something like "RemotePosition3D".

As for the lights, it's a matter of configuring the layers correctly and disabling "own world" on the viewport.