Author Topic: Preset Help  (Read 789 times)

SoulRevenge

  • Guest
Preset Help
« on: May 23, 2012, 11:00:27 pm »
Okay, I was wondering how you can make a Preset's left side different from it's right side, head and body, and, maybe possibly tail~. Like, lets say I created a preset with one red side, and one blue side, is there a code of some sort? And would I need another 'png' or, lets say 'preset_8body' to make them different?
(Sorry if this isn't exactly clear~ >_< I'm no good at explaining things)

Offline Jesicat

  • Curious Wanderer
  • *
  • Posts: 29
  • Floof-O-Meter: 3
  • The word 'seepage' bothers me.
    • View Profile
    • Misfits with Mushrooms
Re: Preset Help
« Reply #1 on: May 23, 2012, 11:05:16 pm »
http://browse.deviantart.com/?qh=&section=&global=1&q=Easy+preset+maker#/d36l5cl

Use this link, it gives you all the files you need. In there there are templates for Left and Right sides. Just make one side different from the other.

Video Tutorial:
FeralHeart Preset Tutorial - Part 1

Thierry

  • Guest
Re: Preset Help
« Reply #2 on: May 23, 2012, 11:06:04 pm »
just open the preset_x.material file with notepad and you will find something like this:

material preset_1_bodyMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_1body.jpg
         }
      }
   }
}
material preset_1_bodyMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_1body.jpg
         }
      }
   }
}


you create 2 image files, one for left side and right. Then modify your script file to match the name of your image textures:

for example if you have these files:
preset_1bodyleft.jpg
preset_1bodyright.jpg

then you do something like this:

material preset_1_bodyMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_1bodyleft.jpg
         }
      }
   }
}
material preset_1_bodyMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_1bodyright.jpg
         }
      }
   }
}


SoulRevenge

  • Guest
Re: Preset Help
« Reply #3 on: May 23, 2012, 11:14:14 pm »
@Theirry and Jesi


^-^ Thank you~ This was really helpful C: