diff --git a/Templates/Full/game/art/skies/TestSky/materials.cs b/Templates/Full/game/art/skies/TestSky/materials.cs new file mode 100644 index 0000000000..b3c59a06d6 --- /dev/null +++ b/Templates/Full/game/art/skies/TestSky/materials.cs @@ -0,0 +1,36 @@ +//----------------------------------------------------------------------------- +// Copyright (c) 2012 GarageGames, LLC +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. +//----------------------------------------------------------------------------- + +singleton CubemapData(TestSkyCubemap) +{ + cubeFace[0] = "./num1"; //right + cubeFace[1] = "./num2"; //left + cubeFace[2] = "./num3"; //back + cubeFace[3] = "./num4"; //front + cubeFace[4] = "./num5"; //top + cubeFace[5] = "./num6"; //bottom +}; +singleton Material( TestSkyCubemapMat ) +{ + cubemap = TestSkyCubemap; + materialTag0 = "Skies"; +}; diff --git a/Templates/Full/game/art/skies/TestSky/num1.png b/Templates/Full/game/art/skies/TestSky/num1.png new file mode 100644 index 0000000000..383e34f932 Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num1.png differ diff --git a/Templates/Full/game/art/skies/TestSky/num2.png b/Templates/Full/game/art/skies/TestSky/num2.png new file mode 100644 index 0000000000..037a641516 Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num2.png differ diff --git a/Templates/Full/game/art/skies/TestSky/num3.png b/Templates/Full/game/art/skies/TestSky/num3.png new file mode 100644 index 0000000000..b494047a53 Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num3.png differ diff --git a/Templates/Full/game/art/skies/TestSky/num4.png b/Templates/Full/game/art/skies/TestSky/num4.png new file mode 100644 index 0000000000..d6cca7d8cd Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num4.png differ diff --git a/Templates/Full/game/art/skies/TestSky/num5.png b/Templates/Full/game/art/skies/TestSky/num5.png new file mode 100644 index 0000000000..14f700b116 Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num5.png differ diff --git a/Templates/Full/game/art/skies/TestSky/num6.png b/Templates/Full/game/art/skies/TestSky/num6.png new file mode 100644 index 0000000000..b80bac101a Binary files /dev/null and b/Templates/Full/game/art/skies/TestSky/num6.png differ