added textures xml

This commit is contained in:
cecilkorik 2011-06-16 11:34:10 -06:00
parent 48138fee3b
commit edd7630844
31 changed files with 45 additions and 0 deletions

0
data/shaders/shadow_pass1.frag Executable file → Normal file
View file

0
data/shaders/shadow_pass1.vert Executable file → Normal file
View file

0
data/shaders/shadow_pass2.frag Executable file → Normal file
View file

0
data/shaders/shadow_pass2.vert Executable file → Normal file
View file

0
data/shaders/standard.vert Executable file → Normal file
View file

0
data/shaders/test.frag Executable file → Normal file
View file

0
data/shaders/test.vert Executable file → Normal file
View file

0
data/sprite/bluelight_static.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

0
data/sprite/fuzzy_particle.png Executable file → Normal file
View file

0
data/sprite/redlight_static.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
data/sprite/star_sprite_inner.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
data/sprite/star_sprite_main.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

0
data/sprite/star_sprite_washout.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

0
data/sprite/whitelight_static.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

0
data/sprite/yellowlight_static.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

0
data/xml/constants.xml Executable file → Normal file
View file

0
data/xml/def/bases.xml Executable file → Normal file
View file

0
data/xml/def/commodities.xml Executable file → Normal file
View file

0
data/xml/def/components.xml Executable file → Normal file
View file

0
data/xml/def/engines.xml Executable file → Normal file
View file

0
data/xml/def/factions.xml Executable file → Normal file
View file

0
data/xml/def/shaders.xml Executable file → Normal file
View file

0
data/xml/def/stellars.xml Executable file → Normal file
View file

0
data/xml/def/systems.xml Executable file → Normal file
View file

18
data/xml/def/textures.xml Executable file
View file

@ -0,0 +1,18 @@
<xml_binary_packing name="textures">
<datatag name="texture" multiple="yes">
<attribute name="id" data="string"/>
<datatag name="file" data="string"/>
<datatag name="coords" optional="yes">
<attribute name="x" data="int" default="-1" optional="yes"/>
<attribute name="y" data="int" default="-1" optional="yes"/>
</datatag>
</datatag>
<datatag name="material" multiple="yes">
<attribute name="id" data="string"/>
<datatag name="texture" multiple="yes">
<attribute name="ref" data="string"/>
<attribute name="type" data="string" optional="yes" default="diffuse"/>
</datatag>
</datatag>
</xml_binary_packing>

0
data/xml/def/weapons.xml Executable file → Normal file
View file

0
data/xml/engines.xml Executable file → Normal file
View file

0
data/xml/factions.xml Executable file → Normal file
View file

0
data/xml/stellars.xml Executable file → Normal file
View file

27
data/xml/textures.xml Executable file
View file

@ -0,0 +1,27 @@
<textures>
<texture id="t_black">
<file>tex/black.png</file>
</texture>
<texture id="t_white">
<file>tex/white.png</file>
</texture>
<texture id="tnm_flat">
<file>tex/nm_flat.png</file>
</texture>
<material id="m_blank">
<texture ref="t_white" type="diffuse"/>
<texture ref="tnm_black" type="normal"/>
</material>
<texture id="t_test">
<file>tex/test1.png</file>
</texture>
<texture id="t_test_plasma">
<file>tex/plasma1.png</file>
</texture>
<texture id="t_test_plasma2">
<file>tex/plasma2.png</file>
</texture>
<material id="m_test">
<texture ref="t_test">
</material>
</textures>

0
data/xml/weapons.xml Executable file → Normal file
View file