Skip to main content

Making a character model Blender 2.57 Part one

New tutorial on another way on making a character.  For reference, I'll be doing this from right-ortho perspective, which you can switch to by pressing 3 on a numberpad, or if you have an emulated numberpad, the 3 on the number row.

So, you start out with your basic cube, go into edit mode and subdivide it.  Press Z to change it to wireframe mode and select the bottom half and the quarter to the right and delete it.  You should be left with a rectangular prism with a missing bottom and side.  You can fix this by selecting two adjacent edges then pressing F which will join the two edges together with a face, or you can leave it hollow.

The next part is mirroring the object.  Select the object and go to modifiers.  Since I'm doing the object from right-ortho, I will make it so it mirrors on the y axis, and y axis only.  Under options, check merge, clippings, and vertex groups.  This makes sure that the object mirrors correctly and also while you are modeling it doesn't make creases in the middle of the model.

Creating the character is all about knowing how to extrude, loop cut and merge edges.  If you don't know how to do this stuff (you have to be in edit mode);
extrude: select a face, edge, or vertice and press E.  When you've extruded it to the length that you want it, click the left mouse button (LMB)
loop cut: have your cursor over the face you want to add an edge to and hit CTRL R and click the LMB.  The purple line will change to an orange line, of which you can change the placement, when you have the placement you want, click the LMB to set it.

Using these tools will allow you to add more detail to your piece and also make it smoother.  Using this method, I've found that my models have come out better and more appealing,  it is also easier to cooperate with, that is, using a hollow mesh and deleting 3/4 of the cube before mirroring, and also clipping.
Withing the first couple minutes.


I extruded on all sides and joined edges where it was necessary to make the legs


I loop cut on the leg vertically a couple times in order to get the general roundness and once horizontally to show the knee and get the natural bend of the leg.  When I got the general roundness, it still was quite as round as I liked it, so I selected the leg and clicked the smooth vertex option.

At this point, it's starting to look similar to a Magical Melody Character, which that cute stoutness is what I'm aiming for this character.

Change of plans, proportional body.  After I got the general sizings, placements, and such planed out, I selected the whole body and smoothed the vertices some the moved the sides closer together.  

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