Skip to main content

Making your materials A little more realistic.. (Normal Maps and Bumped Diffuse)

How to go from this:











To this:











So start with finding a nice seamless(optional) image for a texture you want to put on an object. A great place to find plenty of detailed seamless textures is Filter Forge. You can search their filter library and find plenty of great textures that are seamless. The texture I'm using can be found here. Once you have found and saved the image you want, you need to import it to Unity 3D. Once you have imported it, it should show up in your projects pane. Duplicate the image by clicking on it in projects and hitting Ctrl + D. Once you have the duplicate, create a new material by going to Project>Create>Material.

















Once you have your material created, select the Shader from diffused, to Bumped Diffuse

















In the main texture, select the texture(image) you imported.
Now in the duplicated texture, change the texture type from texture to normal map.
Then click apply, you should get something like this:













So go back to your material, and for your second option, put in the duplicate image you just modified. So now you should have this:

















So you can apply your material to any of your game objects, and when light hits it, it becomes more defined and 3D like. Comment for any questions, if I need to be any more clear, typos, mess ups, sudjestions, please comment. XD but I doubt anyones actually even going to read this

Comments

  1. Thank You and I have a tremendous offer: What Was The First Home Renovation Show house renovation shows on netflix

    ReplyDelete

Post a Comment

Popular posts from this blog

How To Make a Hellish Looking Sky Box

I came across this problem while constructing my scene of Hell in a little project I've been working on, and could not find a reasonable sky box on the web for what I want. Maybe I was not looking hard enough, but I ended up making nice substitute. If you think the sky box looks familiar, then your right. The Sky box I'm using is already packaged with Unity3D! To import the sky boxes Unity has made for you,  simply go to Assets>Import Package>Skyboxes.  The sky boxes will appear in your projects tab under a folder named "Standard Assets". To make this sky box, first you must find the folder containing all the sky box materials and open it up. In it will be a list of sky boxes for your disposal. To get this skybox, I decided to tweak the "StarryNight Skybox" (But the "MoonShine Skybox" looks pretty cool also!).  Select the sky box and view it under the inspector tab. Underneath the properties there will be a tint color variable allowin...

How To Make A Gun Shot Sound (SFX On Unity 3D)

When it comes to audio in Unity, there are four components: Audio Clip , Audio Source , Audio Listener , and Audio Re-verb Zone . Audio Clips are the actual audio file imported into your game. Unity supports file formats: .aif, .wav, .mp3, and .ogg. When imported, you can compress them greatly, with the price of loosing some quality. You can do this by first selecting the audio clip, view it in the inspector. Under the Audio Importer component, you can switch the audio format from Native to the audio clip, to a compressed format applied by Unity. You can change how compressed the file is by dragging the bar at the bottom, then hitting apply. You can get plenty of free good SFX from a site called  freesound.org . All you have to do is create an account for free , and download all the sounds you want. I found a nice gun shot sound here . Simply download and load into your Project. Audio Source actually plays the audio clip in your scen...

Handling Music and Sound Effects In Your Games

Initiative  While developing Treva's Adventure I had to figure out a way to handle multiple music tracks and sound effects in a clean manner or suffer horribly.  What was going to help me achieve a simple solution was taking all the different sounds and centralizing them in a single class in order to black box them.   Any other code trying to play a sound wouldn't even know the sound file's name.   All code trying to play a music track would reference a enum that defines all the track names. Defining The Class Creating The Enum When I first started defining types in my enumeration,  I was naming the types to be exactly like the file name.  For a scary sound effect I had found a file named "ghost breath".  So around my code would be scattered lines like SoundManager.Play(SoundEffectType.GhostBreath);  This was fine until I found a sound that better fit the situation it was being used in,  and decided to use "ghost breath" for a...