I am working on a 2 player cooperative game. Both of them are on a ship together. One of them is the pilot and another shoots a turret on the ship. The problem is that I would like to make the ship transparent for the turret to avoid obstructing its view, but not for the pilot. I can't change the material of the ship because that would make it transparent for both cameras. I set the turret's camera to clip nearby objects, which makes the ship disappear, and it helps clear the turret's view without altering the pilot's view of the ship. Is there any way to set the turret's view to make transparent instead of clipping nearby objects?
Without a bit more information regarding the way that you are currently implementing your node structure, it is difficult to say exactly what you need to do to get things working the way you are hoping. However, you can try a combination of the following techniques to achieve the camera transparency mechanic you're trying to create.
1. Use Layers
2. Use Viewports
3. Use Shaders
shader_type spatial;
uniform bool is_turret_camera : hint_flag;
void fragment() {
if (is_turret_camera) {
ALPHA = 0.5; // Just an example. Adjust as needed
} else {
ALPHA = 1.0;
}
}