Kodi Community Forum

Full Version: conditional animation OnNext
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have  a wrap list showing album covers, and I've added an image outside of the list control for fanart.  But when I try to animate, it's not behaving the way I would expect.  When in use, the texture stays at the start value.  No animation occurs.  Similar results if I change the type to slide or zoom.

xml:
<animation condition="Container(id).OnNext" effect="fade"  start="25" end="100" time="300">Conditional</animation>
<texture>$INFO[Container(id).ListItem.Art(fanart)]</texture>

I did some troubleshooting and this works, so I know some animation is possible. 
xml:
<animation condition="Player.Paused" effect="fade"  start="25" end="100" time="300">Conditional</animation>
<texture>$INFO[Container(id).ListItem.Art(fanart)]</texture>

Is there some limitation to the use on OnNext in animation conditions?