How to disable the lighting in GLMakie

I plot a figure like:


How to disable the reverse lighting at those points?
The picture is generated by codes like:

second(x) = x[2]
fig = Figure()
axes = LScene(fig[1, 1])
for i in eachindex(points)
    scatter!(axes, first.(points), second.(points), last.(points))
end
fig
1 Like

That’s not light but artifacts from the ordering:

https://docs.makie.org/stable/reference/plots/scatter/#dealing_with_outline_artifacts_in_glmakie

2 Likes

Thanks a lot! Set

scatter!(..., fxaa=true)

works.