Can anyone help me get an opacity scope to work correctly with pgf-umlcd inheritance relation?
\documentclass{minimal}
\usepackage{pgf-umlcd}
\begin{document}
\begin{tikzpicture}
\begin{scope}[opacity=0.3]
\begin{class}{Foo}{0, 2cm}
\end{class}
\begin{class}{Bar}{0, 0cm}
\inherit{Foo}
\end{class}
\end{scope}
\end{tikzpicture}
\end{document}
Notice the inheritance relation doesn't get the reduced opacity.


transparency grouphere. Isn't just opacity what you need? `\documentclass{minimal} \usepackage{pgf-umlcd}\begin{document}
\begin{tikzpicture} \begin{scope}[opacity=0.5] \begin{class}{Foo}{0, 2cm} \end{class} \begin{class}{Bar}{0, 0cm} \inherit{Foo} \end{class} \end{scope} \end{tikzpicture}
\end{document}`
– Gonzalo Medina Sep 12 '15 at 21:38