- Thread starter
- Moderator
- #461
From my Theme for Titan:Hello everyone. When i will use DiscArt for Series, how looks the textur code ? This is the one from MovingPictures..
TVSeries.SkinSettings.xml
Code:
<videoplayimages import="true">
<property>
<name>TVSeries.Play.ClearArt</name>
<value><![CDATA[thumbs\ClearArt\Series\<Series.ID>.png]]></value>
</property>
<property>
<name>TVSeries.Play.ClearLogo</name>
<value><![CDATA[thumbs\ClearLogo\Series\<Series.ID>.png]]></value>
</property>
<property>
<name>TVSeries.Play.CD</name>
<value><![CDATA[thumbs\CDArt\Series\<Series.ID>.png]]></value>
</property>
<property>
<name>TVSeries.Play.CDSeason</name>
<value><![CDATA[thumbs\CDArt\Seasons\<Series.ID>_s<Season.SeasonIndex>.png]]></value>
</property>
<!-- You can define multiple properties -->
</videoplayimages>
videoOSD.xml
Code:
<control>
<description>Series Seasons CDArt</description>
<type>image</type>
<id>234832</id>
<posX>275</posX>
<posY>600</posY>
<width>300</width>
<height>300</height>
<texture>#TVSeries.Play.CDSeason</texture>
<keepaspectratio>yes</keepaspectratio>
<centered>yes</centered>
<align>center</align>
<zoom>no</zoom>
<valign>top</valign>
<visible>!string.equals(#TVSeries.Episode.SeriesName,)</visible>
<animation effect="rotate" delay="0" end="-360" time="8000" loop="true" condition="!player.paused">Conditional</animation>
</control>
<control>
<description>Series CDArt</description>
<type>image</type>
<id>0</id>
<posX>275</posX>
<posY>600</posY>
<width>300</width>
<height>300</height>
<texture>#TVSeries.Play.CD</texture>
<keepaspectratio>yes</keepaspectratio>
<centered>yes</centered>
<align>center</align>
<zoom>no</zoom>
<valign>top</valign>
<visible>!string.equals(#TVSeries.Episode.SeriesName,)+!control.hasthumb(234832)</visible>
<animation effect="rotate" delay="0" end="-360" time="8000" loop="true" condition="!player.paused">Conditional</animation>
</control>