Skip to content
Snippets Groups Projects
Commit 168cba97 authored by Alexander Rose's avatar Alexander Rose
Browse files

fixed point .opaque value calc

parent bc0508ba
No related branches found
No related tags found
No related merge requests found
...@@ -121,6 +121,9 @@ export namespace Points { ...@@ -121,6 +121,9 @@ export namespace Points {
export function updateRenderableState(state: RenderableState, props: PD.Values<Params>) { export function updateRenderableState(state: RenderableState, props: PD.Values<Params>) {
Geometry.updateRenderableState(state, props) Geometry.updateRenderableState(state, props)
state.opaque = state.opaque && !props.pointFilledCircle && props.pointEdgeBleach === 0 state.opaque = state.opaque && (
!props.pointFilledCircle ||
(props.pointFilledCircle && props.pointEdgeBleach === 0)
)
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment