From e1c0832a9d00fbabbf270277c28d9b03b51ff5a0 Mon Sep 17 00:00:00 2001 From: Arceveti <73617174+Arceveti@users.noreply.github.com> Date: Wed, 22 Sep 2021 17:16:49 -0700 Subject: [PATCH] Paintings occlude silhouette --- src/game/paintings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/paintings.c b/src/game/paintings.c index 4431c307..f5d6b8fa 100644 --- a/src/game/paintings.c +++ b/src/game/paintings.c @@ -1138,7 +1138,7 @@ void move_ddd_painting(struct Painting *painting, f32 frontPos, f32 backPos, f32 void set_painting_layer(struct GraphNodeGenerated *gen, struct Painting *painting) { switch (painting->alpha) { case 0xFF: // Opaque - SET_GRAPH_NODE_LAYER(gen->fnNode.node.flags, LAYER_OPAQUE); + SET_GRAPH_NODE_LAYER(gen->fnNode.node.flags, LAYER_OCCLUDE_SILHOUETTE_OPAQUE); break; default: SET_GRAPH_NODE_LAYER(gen->fnNode.node.flags, LAYER_TRANSPARENT);