Feral Heart

Help & Guidance => Game Help => Topic started by: xXSilverWolfXx on December 07, 2011, 04:26:34 pm

Title: Body Going Invisible Underwater?
Post by: xXSilverWolfXx 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.(http://i40BannedImageSite/i59oo0.jpg)

But now, Half of my head disappeared underwater.
(http://i40BannedImageSite/169i0sx.jpg)

Is there anyway to fix this?
Title: Re: Body Going Invisible Underwater?
Post by: Deviedra 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.
Title: Re: Body Going Invisible Underwater?
Post by: xXSilverWolfXx 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.
Title: Re: Body Going Invisible Underwater?
Post by: Ruby1234 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?
Title: Re: Body Going Invisible Underwater?
Post by: xXSilverWolfXx 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
}
}
}
}
Title: Re: Body Going Invisible Underwater?
Post by: Ruby1234 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. ;)