Skip to content

Commit

Permalink
build(deps): update TS to newer (not latest) version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nithos committed Nov 23, 2023
1 parent ec69de8 commit c3e0c38
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 398 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"pinst": "3.0.0",
"rimraf": "5.0.5",
"tslib": "2.6.2",
"typescript": "4.3.5",
"typescript": "5.2.2",
"yargs": "17.7.2"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/graph/LayerRenderable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export abstract class LayerRenderable<T_SRC, T_TGT> extends PointsReaderEmitter<
}

public get opaque(): boolean {
return this.localUniforms.uAlpha >= 1.0 || this.blendMode === LayerRenderableBlendMode.NONE;
return this.alpha >= 1.0 || this.blendMode === LayerRenderableBlendMode.NONE;
}

protected pickingManager: PickingManager;
Expand Down
Loading

0 comments on commit c3e0c38

Please sign in to comment.