Feral Heart

Help & Guidance => Game Help => Topic started by: foxofmagic on June 14, 2014, 03:46:23 am

Title: I have a problem.
Post by: foxofmagic on June 14, 2014, 03:46:23 am
I'm making a flying donkey preset but my wings aren't functioning. One wing appears while the other is BaseWhite.
(http://i.imgur.com/mREw4wZ.png)
(http://i.imgur.com/sAGIScG.png)
(http://i.imgur.com/XxBxwHe.png)
Plz help!
Title: Re: I have a problem.
Post by: AlphaEclipse on June 14, 2014, 03:57:10 am
This belongs in game help. c:

As for your issue, the material looks fine. :o Maybe you should try making a copy of your wing picture/UV and saving it as preset_11_equip2.jpg and changing 1/2 of the wing material's. Like this:
Quote
material preset_11_equipMatL
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_11_equip.jpg
         }
      }
   }
}
material preset_11_equipMatR
{
   technique
   {
      pass
      {
         texture_unit
         {
            texture preset_11_equip2.jpg
         }
      }
   }
}
Title: Re: I have a problem.
Post by: foxofmagic on June 14, 2014, 05:02:06 am
Thank you!
Title: Re: I have a problem.
Post by: LordSuragaha on June 14, 2014, 05:03:36 am
Moving this to the Game Help section btw.
Title: Re: I have a problem.
Post by: AlphaEclipse on June 14, 2014, 05:21:17 am
Thank you!
You're welcome. :)
Title: Re: I have a problem.
Post by: foxofmagic on June 14, 2014, 05:42:34 am
Thank you!
You're welcome. :)

Oh, it seems that it didn't work... :-[

Moving this to the Game Help section btw.
Sorry 'bout that.
Title: Re: I have a problem.
Post by: Sherlockian on June 14, 2014, 11:01:59 am
I tend to use a different material code for the wings and it works 99.9% of the time so maybe this will work for you? c:
Code: [Select]
material preset_11_equipMatL
{
receive_shadows on
technique
{
pass
{
alpha_rejection greater_equal 128
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000 12.500000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
scene_blend alpha_blend
texture_unit
{
texture preset_11_equip.jpg
tex_address_mode wrap
filtering trilinear
}
}
}
}
material preset_11_equipMatR
{
receive_shadows on
technique
{
pass
{
alpha_rejection greater_equal 128
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000 12.500000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
scene_blend alpha_blend
texture_unit
{
texture preset_11_equip.jpg
tex_address_mode wrap
filtering trilinear
}
}
}
}
Title: Re: I have a problem.
Post by: foxofmagic on June 14, 2014, 07:14:11 pm
I tend to use a different material code for the wings and it works 99.9% of the time so maybe this will work for you? c:
Code: [Select]
material preset_11_equipMatL
{
receive_shadows on
technique
{
pass
{
alpha_rejection greater_equal 128
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000 12.500000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
scene_blend alpha_blend
texture_unit
{
texture preset_11_equip.jpg
tex_address_mode wrap
filtering trilinear
}
}
}
}
material preset_11_equipMatR
{
receive_shadows on
technique
{
pass
{
alpha_rejection greater_equal 128
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000 12.500000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
scene_blend alpha_blend
texture_unit
{
texture preset_11_equip.jpg
tex_address_mode wrap
filtering trilinear
}
}
}
}

No it didn't, unfortunately, but thank you.