Feral Heart

Help & Guidance => Game Help => Topic started by: PuppyDog52 on May 12, 2017, 02:41:46 am

Title: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 02:41:46 am
I'm trying to use multiple presets but when I put a preset in a folder it only makes that folder with the preset vanish help please
Title: Re: Unable to use multiple presets
Post by: Azurain on May 12, 2017, 02:47:48 am
Are you trying to put multiple presets into one folder? If you already have a preset in a folder, you can't put another preset in it. You will have to use another one. If you have a preset labeled preset_3 for example, but already have a preset in folder 3, all you have to do is rename all of the files to the file you want to put it in and go change the coding in the material file. (Basically just change everything from _3 to _# you choose)

Hope this was what you were meaning. ^^;
Title: Re: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 02:53:36 am
I mean I have a preset in a folder and a another in preset_2 folder but when I do that the game doesn't see that folder
Title: Re: Unable to use multiple presets
Post by: Azurain on May 12, 2017, 03:01:47 am
So you're saying that when you go into preset maker you don't have an option for preset 2? Or did you not go to preset maker first and export it?
Title: Re: Unable to use multiple presets
Post by: Morgra on May 12, 2017, 03:02:47 am
Did you change the material files in each to correspond with each folder number? If you just pasted your first folder's material file overtop of the one in the preset_2 file, then the preset will indeed disappear. I'd recommend copying all of your files over except for the material file of your preset and making a new material file with the names of each of your texture files.
Title: Re: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 03:05:52 am
I put a preset in preset_2 made sure the material file said preset_2 then I go into the game to export it and preset 2 doesn't show up
Title: Re: Unable to use multiple presets
Post by: Morgra on May 12, 2017, 03:10:22 am
Are you making sure that the numbers inside of each material section say "2"? In my example below, note the top line. Each part of your preset, that first line (bodyMatL, bodyMatR, headMatL, headMatR etc) should have a 2 listed next to it.
Code: [Select]
material preset_2_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_2body.jpg
}
}
}
}
Title: Re: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 03:18:21 am
I don't know how to check that
Title: Re: Unable to use multiple presets
Post by: Morgra on May 12, 2017, 03:30:32 am
You will need to open the preset_2.material file in Notepad. How you do that is you right click the .material file, move your cursor down to 'Open With...' then select the program "Notepad". In here will be all of the preset's information. For each part you need to make sure the file names and the file types are correct. Say for instance, your preset body texture file is "mypresetbody.png" It would need to look like this under the left body material text and the right body material text.

Like this


Code: [Select]
material preset_2_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture mypresetbody.png
}
}
}
}
material preset_2_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture mypresetbody.png
}
}
}
}

Not this

Code: [Select]
material preset_2_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_2body.jpg
}
}
}
}
material preset_2_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_2body.jpg
}
}
}
}

You will need to change the filenames for each preset part in order for it to show up correctly.
Title: Re: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 03:45:27 am
Ok I did it now preset 2 is showing but the export button doesn't do anything
Title: Re: Unable to use multiple presets
Post by: Morgra on May 12, 2017, 03:52:46 am
Exit out of the game and restart it back up. Then, login and select a character. You will need to edit this character. After entering the Character Creation menu, go to the last tab and select the button that says "Use Preset". Does it give you a preset in the list? If there's nothing in that box, then the export was unsuccessful. If there is a preset in the box, then it worked.
Title: Re: Unable to use multiple presets
Post by: PuppyDog52 on May 12, 2017, 03:59:55 am
I got it working thanks
Title: Re: Unable to use multiple presets
Post by: Morgra on May 12, 2017, 04:01:06 am
You're welcome! Happy we could help ya!

I will lock up this topic as the problem has been solved.