From ae55b5f5527a0d69b42f70db92bfe83b465cc200 Mon Sep 17 00:00:00 2001 From: Azaezel Date: Mon, 1 Sep 2014 19:39:29 -0500 Subject: [PATCH] Adds material definitions for groundcover referencing. --- .../Full/game/art/environment/materials.cs | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Templates/Full/game/art/environment/materials.cs diff --git a/Templates/Full/game/art/environment/materials.cs b/Templates/Full/game/art/environment/materials.cs new file mode 100644 index 000000000..2b5a81e77 --- /dev/null +++ b/Templates/Full/game/art/environment/materials.cs @@ -0,0 +1,48 @@ +singleton Material(grass1) +{ + mapTo = "grass1.png"; + diffuseMap[0] = "art/environment/grass1.png"; + translucent = true; + materialTag0 = "Foliage"; + alphaTest = "1"; + alphaRef = "80"; +}; + +singleton Material(grass2) +{ + mapTo = "grass2.png"; + diffuseMap[0] = "art/environment/grass2.png"; + translucent = "0"; + materialTag0 = "Foliage"; + alphaTest = "1"; + alphaRef = "80"; +}; + +singleton Material(grass3) +{ + mapTo = "grass3.png"; + diffuseMap[0] = "art/environment/grass3.png"; + translucent = "0"; + materialTag0 = "Foliage"; + alphaTest = "1"; + alphaRef = "80"; +}; + +singleton Material(plant1) +{ + mapTo = "plant1.png"; + diffuseMap[0] = "art/environment/plant1.png"; + materialTag0 = "Foliage"; + alphaTest = "1"; + alphaRef = "80"; +}; + +singleton Material(plant2) +{ + mapTo = "plant2.png"; + diffuseMap[0] = "art/environment/plant2.png"; + translucent = true; + materialTag0 = "Foliage"; + alphaTest = "1"; + alphaRef = "80"; +};