Author Topic: I have a problem.  (Read 3346 times)

foxofmagic

  • Guest
I have a problem.
« 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.



Plz help!

AlphaEclipse

  • Guest
Re: I have a problem.
« Reply #1 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
         }
      }
   }
}

foxofmagic

  • Guest
Re: I have a problem.
« Reply #2 on: June 14, 2014, 05:02:06 am »
Thank you!
« Last Edit: June 14, 2014, 05:23:02 am by LeppatheCivet »

Offline LordSuragaha

  • The Karen Slayer
  • Immortal Legend
  • *****
  • Posts: 11,027
  • Country: 00
  • Floof-O-Meter: 1052
    • View Profile
Re: I have a problem.
« Reply #3 on: June 14, 2014, 05:03:36 am »
Moving this to the Game Help section btw.

AlphaEclipse

  • Guest
Re: I have a problem.
« Reply #4 on: June 14, 2014, 05:21:17 am »

foxofmagic

  • Guest
Re: I have a problem.
« Reply #5 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.

Offline Sherlockian

  • Yes, it means I'm bread
  • Dedicated Supporter
  • ***
  • Posts: 422
  • Country: 00
  • Floof-O-Meter: 65
  • Lynxy nuzzles <3
    • View Profile
Re: I have a problem.
« Reply #6 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
}
}
}
}
Please, feel free to call me Genny. x)


Avatar & signature by Zady <3

foxofmagic

  • Guest
Re: I have a problem.
« Reply #7 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.