Non-Tilted Library Mode Cover Art?
#1
Is it possible to disable the tilt of library mode cover art? I am not crazy about the 'jaggy' line that happens when the cover art is turned at an angle.

When you disable the tilt in general skin settings that does not apply to library mode.

I started playing around with settings in the mymovienav.xml and that seemed to be place but I couldn't find the exact setting to stop it.

Any help would be appreciated.

Thanks
Reply
#2
open MyVideoNav.xml and delete this following line :

<animation effect="rotatey" start="-20" end="-20" time="0" condition="true">Conditional</animation>

This line will appear twice, once for the icon and second for the reflection. Make sure to delete both.


hope this helps Smile

phil
Reply
#3
You could do it this way as well.

Open MyVideoNav.xml and look for this
Code:
        <control type="image" id="999">
            <description>list item icon</description>
            <posx>20</posx>
            <posy>100</posy>
            <width>350</width>
            <height>350</height>
            <info>ListItem.Icon</info>
            <aspectratio>keep</aspectratio>
            <visible>Control.IsVisible(50)</visible>
            <include>list-fade</include>
            <animation effect="rotatey" start="-20" end="-20" time="0" condition="true">Conditional</animation>
            <animation effect="zoom" end="80,50,250,250" time="150" condition="Control.IsVisible(50) + System.IdleTime(2) + [Container.Content(Movies) | Container.Content(TVShows) | Container.Content(Seasons) | Container.Content(Episodes)]">Conditional</animation>
        </control>
        <control type="image">
            <description>list item icon reflection</description>
            <posx>20</posx>
            <posy>450</posy>
            <width>350</width>
            <height>350</height>
            <info>ListItem.Icon</info>
            <texture flipy="true" diffuse="fade2.png">-</texture>
            <aspectratio>keep</aspectratio>
            <visible>Control.IsVisible(50) + !System.IdleTime(2)</visible>
            <visible>!Window.Next(Home)</visible>
            <animation effect="rotatey" start="-20" end="-20" time="0" condition="true">Conditional</animation>
            <include>list-fade</include>
        </control>

and change it to this
Code:
        <control type="image" id="999">
            <description>list item icon</description>
            <posx>20</posx>
            <posy>100</posy>
            <width>350</width>
            <height>350</height>
            <info>ListItem.Icon</info>
            <aspectratio>keep</aspectratio>
            <visible>Control.IsVisible(50)</visible>
            <include>list-fade</include>
            <animation effect="rotatey" start="-20" end="-20" time="0" condition="Skin.HasSetting(tilted-icons)">Conditional</animation>
            <animation effect="zoom" end="80,50,250,250" time="150" condition="Control.IsVisible(50) + System.IdleTime(2) + [Container.Content(Movies) | Container.Content(TVShows) | Container.Content(Seasons) | Container.Content(Episodes)]">Conditional</animation>
        </control>
        <control type="image">
            <description>list item icon reflection</description>
            <posx>20</posx>
            <posy>450</posy>
            <width>350</width>
            <height>350</height>
            <info>ListItem.Icon</info>
            <texture flipy="true" diffuse="fade2.png">-</texture>
            <aspectratio>keep</aspectratio>
            <visible>Control.IsVisible(50) + !System.IdleTime(2)</visible>
            <visible>!Window.Next(Home)</visible>
            <animation effect="rotatey" start="-20" end="-20" time="0" condition="Skin.HasSetting(tilted-icons)">Conditional</animation>
            <include>list-fade</include>
        </control>
This will do the same as rogue21 suggested but it will make it so the skin option for tilting icons works.
Reply
#4
This is now fixed in the svn and the rar download in my sig is updated as well.
Reply

Logout Mark Read Team Forum Stats Members Help
Non-Tilted Library Mode Cover Art?0