Feral Heart

Help & Guidance => Game Help => Topic started by: Bloo. on June 18, 2012, 03:15:43 pm

Title: Preset Help
Post by: Bloo. on June 18, 2012, 03:15:43 pm
So I am making some presets for people and one requests a one sided marking. Is there a tutorial on how to do that or can someone tell me with good detail so i'll understand?
Title: Re: Preset Help
Post by: Ramine on June 18, 2012, 03:20:45 pm
Check the FH manual, it has a preset tutorial. Should explain how to make a two-sided preset.
Title: Re: Preset Help
Post by: Bloo. on June 18, 2012, 03:30:01 pm
Erm I can't find it there.
Title: Re: Preset Help
Post by: Ruby1234 on June 18, 2012, 11:28:42 pm
First, you need two textures,
one with the marking, and one without.

Once you have those, open the mat file, and you'll see something like this:
Code: [Select]
material preset_{NUMBER}_{BODYPART}MatL
{
technique
{
pass
{
texture_unit
{
texture {TEXTURENAME}
}
}
}
}
material preset_{NUMBER}_{BODYPART}MatR
{
technique
{
pass
{
texture_unit
{
texture {TEXTURENAME}
}
}
}
}

Now you will already have the things in { } filled in, the code above is just for show.
Notice how one of them is a MatL and one is a MatR?
Those L and R stand for left and right,
so whichever side the marking goes on, set the texture accordingly,
and whichever side it doesn't go on, set the other texture.

Hope that helped. ;)
Title: Re: Preset Help
Post by: Bloo. on June 19, 2012, 12:08:08 am
Tech talk lol. I'm sure I'll be able to figure it out now. Thanks ^-^