Skip to content

Commit

Permalink
add translucency to outlineColor
Browse files Browse the repository at this point in the history
fix for #8553

PR adds translucency to outlineColor in BillboardCollectionVS
  • Loading branch information
LHolst authored Jun 30, 2020
1 parent 3b54b9d commit 741914a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Shaders/BillboardCollectionVS.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ if (lengthSq < disableDepthTestDistance) {

v_outlineWidth = outlineWidth / 255.0;
v_outlineColor = outlineColor;
v_outlineColor.a *= translucency;
#endif

v_pickColor = pickColor;
Expand Down

0 comments on commit 741914a

Please sign in to comment.