Skip to main content

Child-parent relationship in Blender 2.57

Child-parent relationship is a confusing concept to understand and master, but important at that.  What a child-parent relationship is is that it "links" thing together without joining the objects into one.  This is good for when you have such things like humanoids when you want a singular part to move, but the entire creation.  (ex: parent: torso; child: arm; whatever the arm does will not affect the torso, however, if the torso rotates, the arm will rotate with it)



So go ahead and edit your cube until it looks like a torso (check out the post about making a character to help, however, do not make an arm projection from the torso) and add another cube IN OBJECT MODE, if you add it in edit mode, it becomes apart of the other object.  And scale it to about the size of an arm.

When creating a child parent relationship, be in object mode and hold down shift while you select your child and parent.  Select your child first, and then the parent second and hit CTRL+P to create the parent relation.  To delete a relationship, hit ALT+P.    If you want to create a string of relations (ex: hand to forearm, forearm to upper arm, and upper arm to torso) work from bottom to top.  Meaning, select the hand then forearm and create a relation between the two, deselect both, then select the forearm then upper arm to create a relation.  So on and so one.  So when the forearm moves, the hand moves, and when the upper arm moves, the forearm and hand moves also.

Can never be too crude, right?

Here I rotated the upper arm and the forearm moved with it, and then I rotated the forearm without it changing the upper arm.  And when I scaled the torso, it scaled everything.

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