Texture vs. Material

Sorry for the newb question, but…

What is the difference between Textures and Materials?

Textures are just .png or .tiff images that you can access via MS paint, photoshop, etc. However, materials contain a variety of things. Heightmaps/Normalmaps are images that are usually blueish/pinkish and are calculated by Unity to show depth in a short of illusion. If you stand a few meters away, bricks will look like they have tiny crevaces, water will look like it has actual waves, carpet will look like it has some fibers sticking out. However if you get close enough, it’ll just be a flat shape (assuming you’ve placed it on a cube).

In short, a material contains a set of information for 3D looks, and may even contain physics information. A texture is just a picture.

Hope this helps.

A texture is an image. Straight out of paint, gimp, photoshop ect.

A material is the details of what an object should look like. Most materials take textures as a parameter. There are many cases where a material takes multiple textueres. For example one texture might define colour, another transparency, another normals and so forth.