Skip to main content

Importing Models and Animation From Blender

NOTE - If nothing is showing up in your preview section, then you have exported the model wrong. Remember you need to have selected in Blender what to be exported. If you have done this, try reversing the faces in the model and re exporting.

So after you have your model from Blender rigged, animated, and exported, you can bring it in to the unity editor. Scale factor is by default 0.01, to change that, try looking at this link
Anyways, your going to want to drag you model to your scene and adjust the scale factor till you have the desired size (scale factor 1 is rarely what you ever want it, its huge).

To start defining your animation, click the + button that's highlighted purple in the picture. You'll get something like this where you can name your animation, define starting and ending frames, and wrap mode.
Remember back when you were making the animation for your model? you had to define frames and you had a certain amount of frames in your overall animation? It's so simple. All you have to do is look at your animation in blender for your animation begin and end frame! If you have a looping animation, you would want to change wrap mode to Loop, and if it still doesn't work try checking the loop box.

There is five different wrap modes. Default, Loop, Ping Pong, Once, and Clamp.
Default uses the animation wrap mode option you chose (located above the split animations check box).

Once and Clamp are similar, but different. Once simply plays through the animation one time and them stops the animation, where as Clamp repeats the last frame of the animation over and over. This gives the appearance of it being played once. This also allows a blend of animation from one animation to the next, allowing more fluid movement.

Loop and Ping Pong are also similar. Loop plays through the entire animation, and in the end, goes back to the first frame and continues on and on. Ping Pong does basicaly this, but once played through the animation, it reverses itself and goes back ward through the animation, then forward again, then back, then... you get the idea. Or if you don't understand or would like to read more, click here.

So, after getting all your animations defined simply apply a script containing a line of code:
Animation.Play(), which plays default animation
Animation.Play("Animation Name")
or
Animation.Blend() for more seamless animation transitions. Click here to read more.

Make sure the script is attached to the game object with the animation component:

If you have any problems, questions, or suggestions, feel free to email me or comment on the post.

Comments

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

Making A Laser Pointer

Want a frieking lazer pointer? BOOM. Attach a Line Renderer component to the object you have the script below attached to. (Component> Miscellaneous>Line Renderer) Code: function Update () { var lineRenderer : LineRenderer = GetComponent(LineRenderer); lineRenderer.useWorldSpace = false; lineRenderer.SetVertexCount(2); var hit : RaycastHit; Physics.Raycast(transform.position,transform.forward,hit); if(hit.collider){ lineRenderer.SetPosition(1,Vector3(0,0,hit.distance)); } else{ lineRenderer.SetPosition(1,Vector3(0,0,5000)); } } @script RequireComponent(LineRenderer) Thank  3dDude for the script. Original Source here .

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 scene. They are an component, so it mu