Skip to main content

making a gun- blender 2.57

Blender obviously gives you all the tools you need to make a gun, so this shall be a tutorial on how to make one

Something you probably want to use is a reference image, however, if you understand what a gun looks like or if you have your own gun design in mind, you may not need one.  For those of you who want to use a reference image, press N on your keyboard to bring up a new menu.  Scroll down to the Background submenu and click the checkbox by it.  Click the add image button and it will come up with more stuff.  Click the file button to pull up and upload menu and click the image file you want.  Keep in mind that Blender can't upload .gif files, so if the image isn't importing, check to make sure that the image format isn't .gif.

If the file format isn't a .gif, but the image still isn't rendering, press the 5 key and this should show the image.  Also, a default opacity for a background is 50% (0.500) but you can change this by double click the opacity bar under the back ground settings and then typing in a new number (0.01 thru 1.0)  Another thing to remember is that the image will only be visible in orthographic views, so it's a good idea to keep another window open to keep at a different perspective.  You can do this by clicking and dragging the little lines in the top right corner to divide the blender screen.
You can join it into one screen gain by right clicking the divider and click join.

Alright, now time to actually start on the gun.  Gun models are pretty damn simple, mostly because one side is symmetrical to the other and also guns are primarily geometric.  I've already started on a Barrett 50 cal.

but through much of the making of it so far, I've kept the modeling preview in wire-frame, which you can switch to just by pressing Z.  This allows you to manipulate all the vertices, edges, and faces, but also allow you to see the reference image.  Making a gun is really no different from any other model, using tools like loop cut, stretch, grab, rotate, etc.  but I'm going to use a different tool than I usually do.

In order to keep everything proportional, I want to make everything all at once rather than multiple separate objects at different times, however, I want the clip and the scope to be detachable.

Completed model
What you do is highlight all the faces you want separate from the rest of it, this can be made easier by staying in wireframe mode and using the box tool (B key) to select the faces.





The press P, which should come up with options like this:
Click the first option, selection, which will separate the the faces selected from the rest of the model.





And voila!  Your selection should turn into a single outline without all extra details.  This just means that it is incompatible in edit because it is no longer the primary subject in it.  You can return to object mode, select the separated object, and go into edit mode with it separate from the original model.





If you want to join the two objects back together, go to object mode and select both of them by holding down  Shift.  Then, in your toolbox, press the join button to bring them back 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