Feral Heart

Help & Guidance => Game Help => Topic started by: Misterwives on July 25, 2017, 08:36:03 pm

Title: Wings for Preset
Post by: Misterwives on July 25, 2017, 08:36:03 pm
Help!! I've done this countless times and I can't seem to fix whatever issue it is. My wings are .jpeg, named preset_12wings, and in the right folder, but the wings will still not work on my preset. Whenever I load the wings in game, they come out as bumble-bee. (same as eyes.)
(http://i.imgur.com/Yt69Uau.png)
Title: Re: Wings for Preset
Post by: SugarFrostBite on July 25, 2017, 08:38:27 pm
try this?

I figured it out XD     open the material file and under mane add :

material preset_(number)_equipMat    ^^ then add R or L for which wing you want to use. Then just fallow the normal pattern like this :

material preset_3_equipMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture(what you named it)_Left.png
         }
      }
   }


^^ Hope this helps!
}
[/color]
Title: Re: Wings for Preset
Post by: Misterwives on July 25, 2017, 08:46:42 pm
try this?

I figured it out XD     open the material file and under mane add :

material preset_(number)_equipMat    ^^ then add R or L for which wing you want to use. Then just fallow the normal pattern like this :

material preset_3_equipMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture(what you named it)_Left.png
         }
      }
   }


^^ Hope this helps!
}
[/color]

aaaa now the wings are just all white. ;-;
Title: Re: Wings for Preset
Post by: SugarFrostBite on July 25, 2017, 08:49:21 pm
Yikes ;w; my fault. I found that on a previous thread and thought that might help.

If that case, check this out

http://jinx135.deviantart.com/art/How-to-preset-wings-On-Feral-Heart-283327899
Title: Re: Wings for Preset
Post by: Morgra on July 25, 2017, 09:07:47 pm
Are you making sure that when you add in the additional material code that you change the number to your correct preset folder?

material preset_3_equipMatL

Where 3 is your preset folder number.

Title: Re: Wings for Preset
Post by: Misterwives on July 26, 2017, 07:07:32 am
Are you making sure that when you add in the additional material code that you change the number to your correct preset folder?

material preset_3_equipMatL

Where 3 is your preset folder number.



yep, I double checked a good three times too & I still don't understand what's wrong with it. It's doing the same thing for my eyes, too. The files are .jpg, and they're named correctly in the coding.


Title: Re: Wings for Preset
Post by: Morgra on July 26, 2017, 07:37:08 am
Okay...mind posting your preset's material code here? You can do that by using this tag:

[code]paste entire code contents here[/code]

Also it might be beneficial for us to know what the filenames of your files are.
Title: Re: Wings for Preset
Post by: Misterwives on July 26, 2017, 08:11:00 am
Code: [Select]
material preset_11_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eyes.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture(preset_11wings)_Right.png
         }
      }
}
material preset_11_equipMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture(preset_11wings)_Left.png
         }
      }
   }[code]
Title: Re: Wings for Preset
Post by: Misterwives on July 26, 2017, 08:11:29 am
Okay...mind posting your preset's material code here? You can do that by using this tag:

[code]paste entire code contents here[/code]

Also it might be beneficial for us to know what the filenames of your files are.

And I'm working in the preset_11 folder as of right now.
Title: Re: Wings for Preset
Post by: sanrio on July 26, 2017, 08:13:53 am
If I'm reading everything correctly it's most likely because you put brackets in the code, along with a few other mistakes.

Try replacing "texture(preset_11wings)_Left.png" and "texture(preset_11wings)_Right.png" in the code with "texture preset_11wings.png"
Also make sure that you are exporting the wing images as a .png
Title: Re: Wings for Preset
Post by: Misterwives on July 26, 2017, 08:29:15 am
Code: [Select]
material preset_11_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eyes.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_11wings.png
         }
      }
}
material preset_11_equipMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_11wings.png
         }
      }
   }[code]
anything else that could be wrong?? Still not working, I'm gonna start yodeling. :I
Title: Re: Wings for Preset
Post by: sanrio on July 26, 2017, 08:35:21 am
Here's what the whole code should be, delete everything currently in the .material file and put this instead:
Code: [Select]
material preset_11_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
Also, re-export the wing images as .jpg 's. If all else fails, let us know.
Title: Re: Wings for Preset
Post by: Misterwives on July 26, 2017, 08:40:21 am
Here's what the whole code should be, delete everything currently in the .material file and put this instead:
Code: [Select]
material preset_11_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11body.jpg
}
}
}
}
material preset_11_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11head.jpg
}
}
}
}
material preset_11_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_11eye.jpg
}
}
}
}
material preset_11_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_11tail.jpg
}
}
}
}
material preset_11_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_11mane.png
}
}
}
}
material preset_11_equipMatL
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
material preset_11_equipMatR
{
technique
{
pass
{
texture_unit
{
texture preset_11equip.jpg
}
}
}
}
Also, re-export the wing images as .jpg 's. If all else fails, let us know.

It worked! Thank you so much!
Title: Re: Wings for Preset
Post by: Morgra on July 26, 2017, 08:41:51 am
Locking up this thread. Glad it got sorted out. From what I could tell there was a lot of excess coding (where certain preset parts were listed more than once) likely causing the issue.