Hello,
The current version of makie.jl generates Makie deprecated code warnings when executing zplot.
line 68
fig = Makie.Figure(resolution=(1000, 1000))
should update to
fig = Makie.Figure(size=(1000, 1000))
and line 81
return Makie.surface!(ax, x, y, zero(x); color=s, shading=false)
should update to
return Makie.surface!(ax, x, y, zero(x); color=s, shading=NoShading)