Skip to main content

PT Boat overview

This will just be a brief overview on how I made this patrol torpedo boat for the game.  There won't really be any other pictures, just steps and tips.








I used this as a reference.  It gave me the general idea and layout of a PT boat (which obviously I didn't put in all the details)  So the obvious first step to take was create the body of the ship by stretching the cube you start out with to the approximate height and width.

Something to note about the PT boat is that on top of the body, rather than concaving like a normal boat you may see, it convexes.  Shaping up the body is pretty easy, and I only need to do a loopcut twice.  The scale tool comes in handy when doing the bottom of the ship and also the front.  No extruding is needed until the cylinders, which are two completely different objects.

For the cylinders, I simply scaled them on the z axis and then extruded the edges.  After I placed the cylinders in their correct places, I joined the objects.

The last part of this project was the torpedoes, which was simple enough.  I scaled down the object as a whole until I achieved the radial size I wanted and then made it longer length-wise.  Back in edit mode all I had to do was select the center and then pull it outward.  A quick note: as a cylinder, there are many vertices that meet on the front and back face, to make sure you select them all, hit C to use the circle select, and select the middle (make sure you are using the vertex select) you can use the middle mouse button to change the size of the circle select.  Right click finish using the circle select.





The PT boat as a whole is actually 8 objects joined together; 4 torpedoes, two other cylinders, the base, and the mesh on top of the base.  Overall it took about 30 minutes.  Tomorrow there will be a second explanation on exporting the object and also how to fix it if the faces are turned inside out.

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