Makie volume animation froze!

Or:

a = zeros(n,n,n)
scene = volume(a)
vol_plot = scene[end] # end --> last plot
record("file.mp4",1:100) do i
   func!(a)
   vol_plot[1] = a # update values passed by first argument
end
1 Like