Skip to content

Commit

Permalink
Use same color for visible and hidden edge to debug highlight and sel…
Browse files Browse the repository at this point in the history
…ection
  • Loading branch information
alja committed Apr 17, 2019
1 parent fd619bf commit 1a673f1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ui5/eve7/lib/OutlinePass.js
Original file line number Diff line number Diff line change
Expand Up @@ -802,16 +802,18 @@ THREE.OutlinePass.selection_enum = {

THREE.OutlinePass.selection_atts = [
{
visibleEdgeColor: new THREE.Color( 1, 0, 0 ),
hiddenEdgeColor: new THREE.Color( 0.1, 0.04, 0.02 )
visibleEdgeColor: new THREE.Color( 1, 0, 1 ),
hiddenEdgeColor: new THREE.Color( 1, 0, 1 )
// hiddenEdgeColoe: new THREE.Color( 0.1, 0.04, 0.02 )
// edgeGlow: 0.0,
// usePatternTexture: false,
// edgeThickness: 1.0,
// edgeStrength: 3.0,
},
{
visibleEdgeColor: new THREE.Color( 0, 0, 1 ),
hiddenEdgeColor: new THREE.Color( 0.1, 0.04, 0.02 )
visibleEdgeColor: new THREE.Color( 0, 1, 1 ),
hiddenEdgeColor: new THREE.Color( 0, 1, 1 )
// hiddenEdgeColor: new THREE.Color( 0.1, 0.04, 0.02 )
// edgeGlow: 0.0,
// usePatternTexture: false,
// edgeThickness: 1.0,
Expand Down

0 comments on commit 1a673f1

Please sign in to comment.