changeset 2684:333396512f18 feature-particleuniverse

refs #34: missing materials added
author Stefan Stammberger <some.fusion@gmail.com>
date Fri, 21 Mar 2014 18:45:18 +0100
parents e6e38155c234
children 2b159beeb870
files share/resources/materials/scripts/particles.material share/resources/materials/scripts/sw_magic.material share/resources/materials/textures/fire_particle.png share/resources/materials/textures/heal.png share/resources/materials/textures/lightning1.png share/resources/materials/textures/lightning2.png share/resources/materials/textures/lightning3.png share/resources/materials/textures/lightning4.png share/resources/materials/textures/sw_magic_streak.png
diffstat 9 files changed, 151 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/resources/materials/scripts/particles.material	Fri Mar 21 18:45:18 2014 +0100
@@ -0,0 +1,137 @@
+material lightning1
+{
+    technique
+    {
+        pass
+        {
+            lighting off
+            scene_blend add
+            depth_write off
+
+            texture_unit
+            {
+                texture lightning1.png
+                tex_address_mode clamp
+            }
+        }
+    }
+}
+
+material lightning2
+{
+    technique
+    {
+        pass
+        {
+            lighting off
+            scene_blend add
+            depth_write off
+
+            texture_unit
+            {
+                texture lightning2.png
+                tex_address_mode clamp
+            }
+        }
+    }
+}
+
+//-----------------------------------------------------------------------------------------------------------------------
+material lightning3
+{
+    technique
+    {
+        pass
+        {
+            lighting off
+            scene_blend add
+            depth_write off
+
+            texture_unit
+            {
+                texture lightning3.png
+                tex_address_mode clamp
+            }
+        }
+    }
+}
+
+//-----------------------------------------------------------------------------------------------------------------------
+material lightning4
+{
+    technique
+    {
+        pass
+        {
+            lighting off
+            scene_blend add
+            depth_write off
+
+            texture_unit
+            {
+                texture lightning4.png
+                tex_address_mode clamp
+            }
+        }
+    }
+}
+
+material lighting_beam
+{
+    technique
+    {
+        pass
+        {
+            lighting off
+            scene_blend add
+            depth_write off
+
+            texture_unit
+            {
+                texture pu_beam_02.png 1d
+                tex_address_mode clamp
+                filtering none
+            }
+        }
+    }
+}
+
+material heal_particle
+{
+	technique
+	{
+		pass
+		{
+			lighting off
+			scene_blend add
+			depth_write off
+			
+			texture_unit
+			{
+				texture heal.png
+                tex_address_mode clamp
+			}
+		}
+	}
+}
+
+
+material fire_particle
+{
+	technique
+	{
+		pass
+		{
+			lighting off
+			scene_blend add
+			depth_write off
+			
+			texture_unit
+			{
+				texture fire_particle.png
+				tex_address_mode clamp
+			}
+		}
+
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/resources/materials/scripts/sw_magic.material	Fri Mar 21 18:45:18 2014 +0100
@@ -0,0 +1,14 @@
+material sw_magic_streak
+{
+	technique
+	{
+		pass
+		{
+			texture_unit
+			{
+				texture sw_magic_streak.png
+				colour_op modulate
+			}
+		}
+	}
+}
Binary file share/resources/materials/textures/fire_particle.png has changed
Binary file share/resources/materials/textures/heal.png has changed
Binary file share/resources/materials/textures/lightning1.png has changed
Binary file share/resources/materials/textures/lightning2.png has changed
Binary file share/resources/materials/textures/lightning3.png has changed
Binary file share/resources/materials/textures/lightning4.png has changed
Binary file share/resources/materials/textures/sw_magic_streak.png has changed