Kodi Community Forum
Non-Tilted Library Mode Cover Art? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: AppTV (https://forum.kodi.tv/forumdisplay.php?fid=76)
+---- Thread: Non-Tilted Library Mode Cover Art? (/showthread.php?tid=46176)



Non-Tilted Library Mode Cover Art? - xfiring - 2009-02-28

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


This will get rid of the tilt effect in library mode - rogue21 - 2009-03-10

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


- CHI3f - 2009-03-11

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.


- CHI3f - 2009-03-11

This is now fixed in the svn and the rar download in my sig is updated as well.