I'm using a random steps decoration with a path that appears through several uncover transitions. Currently the decoration is redrawn in each instance of the slide. How can I change this behavior. A minimal example follows. Thanks.
\documentclass[presentation]{beamer}
\usepackage{tikz, pgf}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{frame}
\begin{center}
\begin{tikzpicture}
\uncover<1-3>{
\fill [decorate, decoration={random steps,segment length=2pt,amplitude=2pt}] (0,0) ellipse (0.5cm and 0.4cm);
}
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}