Feral Heart

Help & Guidance => Game Help => Topic started by: unnbrellas on April 17, 2014, 03:06:55 pm

Title: Blocky Items
Post by: unnbrellas on April 17, 2014, 03:06:55 pm
Ok, so lot of my meshes have been coming off with blocky textures. I think they are all WOW meshes... Is there a way to fix this? It's been driving me insane.

Screenshots:
(I have more if you need them, but I think you get the idea)
(http://i1273.photobucket.com/albums/y408/lilapug/screenshot_04172014_103259119_zps445bf67b.png) (http://s1273.photobucket.com/user/lilapug/media/screenshot_04172014_103259119_zps445bf67b.png.html)
(http://i1273.photobucket.com/albums/y408/lilapug/screenshot_04172014_103528645_zps69abb86d.png) (http://s1273.photobucket.com/user/lilapug/media/screenshot_04172014_103528645_zps69abb86d.png.html)
(http://i1273.photobucket.com/albums/y408/lilapug/screenshot_04172014_103442697_zpsf88960b8.png) (http://s1273.photobucket.com/user/lilapug/media/screenshot_04172014_103442697_zpsf88960b8.png.html)
(http://i1273.photobucket.com/albums/y408/lilapug/screenshot_04172014_103624393_zps9c1100ce.png) (http://s1273.photobucket.com/user/lilapug/media/screenshot_04172014_103624393_zps9c1100ce.png.html)
Title: Re: Blocky Items
Post by: AlphaEclipse on April 17, 2014, 04:04:23 pm
I'm pretty sure it has something to do with the .material files. Could you post them here? :3
Title: Re: Blocky Items
Post by: Sherlockian on April 17, 2014, 04:50:47 pm
Ah yes, this problem. To fix it, you simply have to add this coding into the material file for each object (it is kind of time consuming sadly though as you have to do each one individually cx)

Code: [Select]
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
ambient 0.588235 0.588235 0.588235 1
diffuse 0.588235 0.588235 0.588235 1
specular 0 0 0 10 0

As for the placement of the code, it goes right before where it says 'texture_unit', for example:
Code: [Select]
material ASHENVALEFERN01
{
technique
{
pass
{
cull_hardware none
cull_software none
alpha_rejection greater_equal 128
ambient 0.588235 0.588235 0.588235 1
diffuse 0.588235 0.588235 0.588235 1
specular 0 0 0 10 0
texture_unit
{
texture ASHENVALEFERN01.tga
}
}
}
}

And that should fix your blocky problem. :3
Title: Re: Blocky Items
Post by: unnbrellas on April 17, 2014, 04:53:49 pm
Thank You! +Floof you both
Title: Re: Blocky Items
Post by: Sherlockian on April 17, 2014, 06:47:49 pm
No problem! :3