Skip to main content

Making Characters: Rigging in Blender 2.57

I suppose this could be considered a continuation off of here, only I'm using a different model.  I've found people do rigging different ways, but the most effective way I've found is like this.




 So, here I've got my model, took a couple hours, but is at this point one object, uno, ein, un.  After you've got your object finished, add a single armature, set it inside your model and change the display of the armature to x-ray, like so.
As I go through making the skeleton, I'll be naming each bone, although once one is created there is already a preset name, however naming them myself seems to be easier.  You can check the Name button in the Display menu in order to see the name of each bone as you go along (To rename individual bones, in edit mode, click on the little tab with the bone image and there is a name option for each individual bone).  You can branch a bone of another by going into edit mode (TAB key) and clicking on the little ball and extruding (E key) in any direction.
This is what the skeleton looks like now, all named and placed.  Now it's time for making the vertex groups.  Select the model and go into edit mode.


Select the vertices for a certain portion of a body and go to the vertices tab and go to the vertex group tab.  Here you can name the vertices in the portion you selected, in order for rigging to go smoothly later on, the name must be exactly like the name of the bone; it is case, space, and punctual sensitive.  For example, I've selected all the vertices in the general region of the "Left arm" and I have named the group thus.  After you have it named, hit assign, select, then deselect.  To make sure if the assignment work, click the group and click select.  The vertices assigned to that group should be highlighted.  Make sure to make a new group for each 
And that is the bear with all of it's groups and stuff.  This last step is the easiest.  Select the object and then the armature, hit CTRL P and click Armature Deform.

Now, if you select the armature and go into pose mode, simply move one of the armature bones and the vertices assigned to it should move with it.
With your object rigged, you are now ready for animating.  If you have any questions, feel free to email the blog.


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