-
Ok, so I don't really know where to put this topic, excuse this for being here :-[
I can't seem to get this presets mane coding right(it's my first so im a noob xD) It's just a big white blob.
Picture
(http://i.imgur.com/s5EPi2y.jpg)
Can anyone help me please?
-
Can you send a picture of the coding by chance? (I'm dumb, so I have to look at things to understand them. xD)
-
Moving this over to the Game Help board for you so that people will be able to assist you better.
-
Can you send a picture of the coding by chance? (I'm dumb, so I have to look at things to understand them. xD)
Here's the coding :
material preset_2_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture preset_2mane.png
}
}
}
}
}
-
Looks like you have some unnecessary lines in there floof ^^
For starters take out the 'lighting_off' & 'depth_write off'
And replace where it says 'scene_blend alpha_blend' with this -> 'alpha rejection greater_equal 128'
And take out that bottom bracket so there will be 4 bottom ones.
-
Are you sure that the name of the mane file in the preset folder matches the name in coding? It has too be exactly the same, otherwise it won't work.
-
Try this, bud:
material preset_2_maneMat
{
technique
{
pass
{
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
texture_unit
{
texture preset_2mane.png
}
}
}
}