Author Topic: Body Going Invisible Underwater?  (Read 1565 times)

Offline xXSilverWolfXx

  • Experienced Traveler
  • **
  • Posts: 134
  • Country: 00
  • Floof-O-Meter: 8
  • Apex
    • View Profile
Body Going Invisible Underwater?
« on: December 07, 2011, 04:26:34 pm »
This has been happening a lot now. When I make a preset, Its Mane usually disappears behind a waterfall or underwater.

But now, Half of my head disappeared underwater.


Is there anyway to fix this?

Offline Deviedra

  • Familiar Grounds Dweller
  • **
  • Posts: 65
  • Floof-O-Meter: 2
  • Await the night
    • View Profile
Re: Body Going Invisible Underwater?
« Reply #1 on: December 07, 2011, 06:48:38 pm »
It just happens, there isn't really anything you can do I don't think. All my presets do that and the fluffy mane does that. I don't think other people see it like that though, it might only be on your screen.
----------------p????--------------------

Offline xXSilverWolfXx

  • Experienced Traveler
  • **
  • Posts: 134
  • Country: 00
  • Floof-O-Meter: 8
  • Apex
    • View Profile
Re: Body Going Invisible Underwater?
« Reply #2 on: December 07, 2011, 10:38:43 pm »
It just happens, there isn't really anything you can do I don't think. All my presets do that and the fluffy mane does that. I don't think other people see it like that though, it might only be on your screen.

Oh theres not? Oh well thats ok. It was just starting to get annoying. Thanks anyway.

Offline Ruby1234

  • Mean Tutorial Queen
  • Elder Grey Pelt
  • ****
  • Posts: 2,794
  • Country: us
  • Floof-O-Meter: 297
  • aka Phloxenfree.
    • View Profile
Re: Body Going Invisible Underwater?
« Reply #3 on: December 07, 2011, 11:35:31 pm »
Strange, none of my presets do this. I know the fluffy mane does, but not presets. Can I see your preset's code?

Offline xXSilverWolfXx

  • Experienced Traveler
  • **
  • Posts: 134
  • Country: 00
  • Floof-O-Meter: 8
  • Apex
    • View Profile
Re: Body Going Invisible Underwater?
« Reply #4 on: December 07, 2011, 11:50:08 pm »
Strange, none of my presets do this. I know the fluffy mane does, but not presets. Can I see your preset's code?

Code: [Select]
material preset_10_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture preset_10body.png
}
}
}
}
material preset_10_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture preset_10body.png
}
}
}
}
material preset_10_headMatL
{
technique
{
pass
{
texture_unit
{
texture preset_10headl.png
}
}
}
}
material preset_10_headMatR
{
technique
{
pass
{
texture_unit
{
texture preset_10head.png
}
}
}
}
material preset_10_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_10eyered.png
}
}
}
}
material preset_10_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_10eye.png
}
}
}
}
material preset_10_tailMat
{
technique
{
pass
{
texture_unit
{
texture preset_10tail.png
}
}
}
}
material preset_10_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_10mane.png
}
}
}
}

Offline Ruby1234

  • Mean Tutorial Queen
  • Elder Grey Pelt
  • ****
  • Posts: 2,794
  • Country: us
  • Floof-O-Meter: 297
  • aka Phloxenfree.
    • View Profile
Re: Body Going Invisible Underwater?
« Reply #5 on: December 07, 2011, 11:59:40 pm »
Okay, well the mane issue might be able to be fixed with this code:
Code: [Select]
material preset_10_maneMat
{
        technique
        {
                pass
                {
                        cull_hardware none
                        cull_software none
                        alpha_rejection greater_equal 128
                        texture_unit
                        {
                                texture preset_10mane.png
                        }
                }
        }
}
as for the head, I've never had that happen to me, except for in the very early version of FH, where it wasn't even multiplayer yet. But hey, maybe someone else knows. ;)