Skip to content

Commit

Permalink
Fix blending states
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Sep 20, 2019
1 parent d521ad1 commit c36ca76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Scene/BlendingState.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ define([
equationRgb : BlendEquation.ADD,
equationAlpha : BlendEquation.ADD,
functionSourceRgb : BlendFunction.SOURCE_ALPHA,
functionSourceAlpha : BlendFunction.SOURCE_ALPHA,
functionSourceAlpha : BlendFunction.ONE,
functionDestinationRgb : BlendFunction.ONE_MINUS_SOURCE_ALPHA,
functionDestinationAlpha : BlendFunction.ONE_MINUS_SOURCE_ALPHA
}),
Expand Down Expand Up @@ -72,7 +72,7 @@ define([
equationRgb : BlendEquation.ADD,
equationAlpha : BlendEquation.ADD,
functionSourceRgb : BlendFunction.SOURCE_ALPHA,
functionSourceAlpha : BlendFunction.SOURCE_ALPHA,
functionSourceAlpha : BlendFunction.ONE,
functionDestinationRgb : BlendFunction.ONE,
functionDestinationAlpha : BlendFunction.ONE
})
Expand Down

0 comments on commit c36ca76

Please sign in to comment.