Feral Heart

Help & Guidance => Game Help => Topic started by: Kipjen on April 17, 2016, 03:02:29 am

Title: Resolved!!Preset mane transparency glitch/Internet explorer??
Post by: Kipjen on April 17, 2016, 03:02:29 am
I noticed when making the mane for my friend's preset that the tips of the mane look different than the original mane.
I know nothing about coding. But mainly (no pun intended) the tips kind of fold/dissapear into each other when you move the camera angle. The tips are fuzzy too.
(http://i68BannedImageSite/153476a.png)
Here is what it looked like in gimp
(http://i65BannedImageSite/fvfkp1.png)
I looked at other posts and they were confusing or not related to this specifically.
Title: Re: Preset mane problem? Fuzzy looking tips and transparency thing.
Post by: Kerriki on April 17, 2016, 03:05:55 am
Fold/disappear into each other? I believe I know what you're talking about. Take your mane coding and replace it with this:

Code: [Select]
material preset_#_maneMat
{
technique
{
pass
{
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
texture_unit
{
texture preset_#mane.png
}
}
}
}

Just simply fill in the #'s with whatever preset folder you're using
Title: Re: Preset mane problem? Fuzzy looking tips and transparency thing.
Post by: Kipjen on April 17, 2016, 03:07:44 am
Ok... I'll try. And by folded into eachother i meant they became oddly transparent
Title: Re: Preset mane problem? Fuzzy looking tips and transparency thing.
Post by: Kipjen on April 17, 2016, 03:09:05 am
Wait How??? I have no idea where to put this or how to open anything. Yeah I have literally no idea what that is sorry. I don't know what i'm supposed to be opening.
Title: Re: Preset mane problem? Fuzzy looking tips and transparency thing.
Post by: Ruby1234 on April 17, 2016, 03:20:03 am
Go into your preset's folder, and open preset_#.material (it won't actually be a numbersign, rather the actual number of whatever preset folder you're using) with notepad.
The easiest way to do this is to open notepad, go to File, Open... select "All Files" from the dropdown, then navigate to the file.

You'll see a bunch of lines of material code.

Scroll down til you see this section: (again, the # sign will be the actual number of the preset folder you are in.)
Code: [Select]
material preset_#_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_#mane.png
}
}
}
}

highlight that section and replace it with this:

Code: [Select]
material preset_#_maneMat
{
technique
{
pass
{
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
texture_unit
{
texture preset_#mane.png
}
}
}
}

You will need to manually replace the # signs with the number that matches the preset folder and rest of the code.
Title: Re: Preset mane problem? Fuzzy looking tips and transparency thing.
Post by: Kipjen on April 17, 2016, 03:27:03 am
I can only open it with Internet explorer. No other choices are avaliable.... I did go into "open with" and nothing happened. (even on the actual window default mode)
Title: Re: (unresolved)Preset mane transparency glitch/Internet explorer??
Post by: Ruby1234 on April 17, 2016, 03:43:26 am
The easiest way to do this is to open notepad, go to File, Open... select "All Files" from the dropdown, then navigate to the file.

Don't use "open with," on the file, actually open Notepad first, then do as stated above.
Title: Re: Resolved!!Preset mane transparency glitch/Internet explorer??
Post by: Kipjen on April 17, 2016, 03:49:01 am
Oh! That's much better now Thanks :D
Title: Re: Resolved!!Preset mane transparency glitch/Internet explorer??
Post by: Ruby1234 on April 17, 2016, 03:53:06 am
Happy to help.
Title: Re: Resolved!!Preset mane transparency glitch/Internet explorer??
Post by: Warriorstrike on April 17, 2016, 04:02:37 am
It's good to hear that you've fixed up the issue. I'll lock this up for you since the problem no longer stands.