Substance Painter
In this start to finish texturing project within Substance Painter we cover all the techniques you need to texture the robot character.
# 1 19-05-2013 , 08:19 PM
Registered User
Join Date: May 2013
Posts: 37

Nearest (Unfiltered) Textures

Hi there! I am Piro Efekta. I want to render my Minecraft animation with textures 16x16. I want them to not get blurry. In the modeling process they are not blurry because their Texture Filter is set to Nearest (Unfiltered) but when I render it, they get blurred! I can't enlarge every image, because there are tons of textures!

# 2 19-05-2013 , 09:01 PM
daverave's Avatar
The thin red line
Join Date: Aug 2009
Location: England
Posts: 4,472
Is that 16x16 pixals, could you show the image...............dave




Avatar Challenge Winner 2010
# 3 20-05-2013 , 04:54 PM
Registered User
Join Date: May 2013
Posts: 37
Here are some of the textures:
user added image
user added image

# 4 20-05-2013 , 08:43 PM
Gen's Avatar
Super Moderator
Join Date: Dec 2006
Location: South FL
Posts: 3,522
Setting the texture filter in the shader's attributes is purely for display reasons, software rendering will obey the filter settings on the file texture node and by default that is set to quadratic. Change it to "Off".

It can become a pain to set that for a lot of textures though, so just copy past this simple code into the script editor and execute it.

This version sets the filter to off on selected file textures.

Code:
// Sets filter type to "Off" on selected file textures

string $fileList[] = `ls -sl -type "file"`;

for ($file in $fileList){
        
        setAttr ($file + ".filterType") 0;
              
}
This one sets it on all file textures in the scene.

Code:
// Sets filter type to "Off" on ALL file textures

string $fileList[] = `ls -type "file"`;
for ($file in $fileList){
        
        setAttr ($file + ".filterType") 0;
              
}
The difference is only a minor change but I figured I'd post it nonetheless instead of telling you to delete flags and stuff. Have fun user added image

Attached Thumbnails

- Genny
__________________
::|| My CG Blog ||::
::|| My Maya FAQ ||::
# 5 21-05-2013 , 12:40 PM
Registered User
Join Date: May 2013
Posts: 37
MAN I LOVE YOU!!!!!!!1!1!!! <3 :* THIS SOUNDS GAY BUT YOU SAVED MY LIFE!!!!@1!! THANK AYOYUUU ~!!!!

# 6 21-05-2013 , 06:41 PM
EduSciVis-er
Join Date: Dec 2005
Location: Toronto
Posts: 3,374
It's okay, he's a she. Sorry Gen...

# 7 21-05-2013 , 08:06 PM
Gen's Avatar
Super Moderator
Join Date: Dec 2006
Location: South FL
Posts: 3,522
Stwert, I guess I have no choice but to put pink unicorns spewing rainbows in my avatar then ><

PiroEfekta, glad I could help. user added image


- Genny
__________________
::|| My CG Blog ||::
::|| My Maya FAQ ||::
Posting Rules Forum Rules
You may not post new threads | You may not post replies | You may not post attachments | You may not edit your posts | BB code is On | Smilies are On | [IMG] code is On | HTML code is Off

Similar Threads