Hi! I am in that phase of programming where everyone creates a minecraft clone. I was trying to texture the blocks using a single png file with the block textures.
The problem that I am running into is that I cannot get the texture to look crisp, it is blurry even after altering import settings.
I tried setting default texture filter to nearest neighbor from the project settings but that didn’t change anything.
The best guess I have is to use TextureParameter2D graph node beause it has “nearest neighbor” filter option but I have no idea how to use that and I can’t seem to find a tutorial so far.
Here is a link for a minimal project, the visual shader lies in the material of the plane mesh. minimal project
If you need more info I am here.
Well I figured it out using texture2dparameter by setting it as global shader parameter from project settings and setting the appropriate filter. Sorry, I forgot to mention this material will be assigned to a 3d mesh so I don’t think there are any filter setting in the node itself.
Also is there a way to set the filter on texture2d node itself?