I would like to present a tree with forestin beamer, but parts after parts, starting from the bottom, and then ascent to the top.
So let's consider a simple tree like the following :
\documentclass{beamer}
\usepackage{forest}
\begin{document}
\begin{frame}
\begin{forest}
[VP, calign=last
[{[ajout]}\\\textit{rapidement},
align=center,
base=top]
[VP, calign=first
[VP, calign=first
[V\\\textit{mange}, align=center,base=top]
[{[compl]}\\\textit{une orange}, align=center,base=top]
]
[{[ajout]}\\\textit{dans la cuisine}, align=center,base=top]
]
]
\end{forest}
\end{frame}
\end{document}
I would like to present the bottom of the tree first (so basically the "T" with the "mange" beneath). Then the branch above (the VP with the child on the right), then the level above, and so on until the top of the tree (I hope I'm clear).
Based on this discussion, I know how to do it the other way around (from top to bottom). But how can I do to achieve it as I described?


visible onstyle was originally developed by Daniel (see Mindmap tikzpicture in beamer (reveal step by step); also related, and former work, can be attributed to Matthew Leingang (see How to make beamer overlays with Tikz node). – Claudio Fiandrino Mar 27 '14 at 15:51visible onstyle applied toforestwhich was developed by Qrrbrbirlbel based on\tikz\visible ondeveloped by Daniel as you mention. – Ignasi Mar 27 '14 at 16:35for ancestors'switch appears to no longer exist, andfor ancestors(without the apostrophe) produces a different output. – Pavel Rudnev Nov 12 '17 at 14:10forestI was sure you could do some kind of "sorcery" ;-) – Ignasi Jun 15 '18 at 09:17