Author Topic: How do I make both sides of my preset different?  (Read 2813 times)

Offline LordSuragaha

  • The Karen Slayer
  • Immortal Legend
  • *****
  • Posts: 11,027
  • Country: 00
  • Floof-O-Meter: 1052
    • View Profile
How do I make both sides of my preset different?
« on: June 26, 2011, 04:42:18 pm »
Hello everyone Hiruko here  8) lol
I was wondering how I can make a preset that has say... two different color eyes or different patterns on either side of the body. Is it even possible? I am no pro to GIMP so please go gentle on me xD! Any help is much appreciated loves <3
« Last Edit: June 26, 2011, 04:48:52 pm by Fade the Stray »

Offline Fussyjason

  • Experienced Traveler
  • **
  • Posts: 237
  • Country: 00
  • Floof-O-Meter: 8
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #1 on: June 26, 2011, 04:45:03 pm »
Hmm...I'm not sure if you can. I've never seen anyone with two different sides before...But then again, I'm not a very big preset maker. x3 But I'm sure it's possible.
(Sorreh, SmokahMokah not very smarticles in the morning)

Offline LordSuragaha

  • The Karen Slayer
  • Immortal Legend
  • *****
  • Posts: 11,027
  • Country: 00
  • Floof-O-Meter: 1052
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #2 on: June 26, 2011, 04:47:26 pm »
aww thanks Smokah :) I am hoping there is a way to do it because it would be so cool. Thanks for your reply still ^^

Offline Fussyjason

  • Experienced Traveler
  • **
  • Posts: 237
  • Country: 00
  • Floof-O-Meter: 8
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #3 on: June 26, 2011, 04:56:58 pm »
Mhm. x3
I'm trying to figure out how to make one eye blue and one eye brown on a charrie. x3

Offline Ruby1234

  • Mean Tutorial Queen
  • Elder Grey Pelt
  • ****
  • Posts: 2,794
  • Country: us
  • Floof-O-Meter: 297
  • aka Phloxenfree.
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #4 on: June 26, 2011, 05:40:43 pm »
It's very possible indeed it is.
So, this is the default coding: (preset 7)
Quote from: Default Coding
material preset_7_bodyMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7body.jpg
         }
      }
   }
}
material preset_7_bodyMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7body.jpg
         }
      }
   }
}
material preset_7_headMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7head.jpg
         }
      }
   }
}
material preset_7_headMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7head.jpg
         }
      }
   }
}
material preset_7_eyeMatL
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_7eye.jpg
         }
      }
   }
}
material preset_7_eyeMatR
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_7eye.jpg
         }
      }
   }
}
material preset_7_tailMat
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7tail.jpg
         }
      }
   }
}
material preset_7_maneMat
{
   technique
   {
      pass
      {
         lighting off
         cull_hardware none
         cull_software none
         scene_blend alpha_blend
         depth_write off
         texture_unit
         {
            texture preset_7mane.png
         }
      }
   }
}
You see how it has L (Left) and R (Right) Mats? (Materials)
Those are the sides. bodyMatR is the right side of the body, and bodyMatL is the left side of the body, same for head and eyes. (headMatL, headMatR, eyeMatL, eyeMatR)
Anywho, under the L and R coding, it's using the same image, so simply, make two images, and change it to use that one, under the correct body/head/eye side. So let's say, you want a scar on the right side of the body. And you have the preset_7body.jpg and the scar.jpg You would code it like this:
Quote from: Change the coding on one side
material preset_7_bodyMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7body.jpg
         }
      }
   }
}
material preset_7_bodyMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture scar.jpg
         }
      }
   }
}
material preset_7_headMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7head.jpg
         }
      }
   }
}
material preset_7_headMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7head.jpg
         }
      }
   }
}
material preset_7_eyeMatL
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_7eye.jpg
         }
      }
   }
}
material preset_7_eyeMatR
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         texture_unit
         {
            texture preset_7eye.jpg
         }
      }
   }
}
material preset_7_tailMat
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_7tail.jpg
         }
      }
   }
}
material preset_7_maneMat
{
   technique
   {
      pass
      {
         lighting off
         cull_hardware none
         cull_software none
         scene_blend alpha_blend
         depth_write off
         texture_unit
         {
            texture preset_7mane.png
         }
      }
   }
}

Hopefully that helps! :)

Offline LordSuragaha

  • The Karen Slayer
  • Immortal Legend
  • *****
  • Posts: 11,027
  • Country: 00
  • Floof-O-Meter: 1052
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #5 on: June 26, 2011, 10:39:54 pm »
Thanks so much Ruby you are always a big help! and thanks for having the patience and taking the time to explain this to me. You are the best <3

Offline Ruby1234

  • Mean Tutorial Queen
  • Elder Grey Pelt
  • ****
  • Posts: 2,794
  • Country: us
  • Floof-O-Meter: 297
  • aka Phloxenfree.
    • View Profile
Re: How do I make both sides of my preset different?
« Reply #6 on: June 26, 2011, 10:45:13 pm »
D'awww, your welcome. <3 ^^
And ty!