Skip to main content

Text to Mesh Blender 2.57

Most people who use Blender use it for game development (as this is how we are using it)  and many game developers may not just want flat text as their logo.  This will be a tutorial on how to convert regular text to a three-dimensional mesh.  (I would recommend reading my blog about hot keys if you are new to Blender here)

First things first, add the text.  You can do this simply by pulling up the search menu with space bar and searching "add text" coming up with something like this:




As you may notice it comes up as "Text" to change this, simply go to edit mode, backspace, and add the text you want.  Next you should go to the "Font" tab.  There you can change the alignment, font, text containment, and also the geometry of the text.  Apart of the geometry is the extrusion, otherwise called the depth of the text.  You may want to set the "Extrude" to 0.25 to start with, you do NOT want to use a whole number unless you need something with that much depth.  If you went through the hot keys list, you may have noticed how to change regular text to a mesh.  Hit ALT+C and click on "mesh from curve/meta/surf/text".
Yeah, that function, CLICK IT.  Did you click it?  Yay, now you have a text mesh :D




Look at that beauty in edit mode.  Add guess what?  Since it's a mesh, you can do everything you do to a normal mesh.  That right, everything.  Scale, rotate, grab, extrude, do everything.  It has pre-made vertices to make it easier for you, so play around, it's what the undo function is for.



Just a fun picture.  Damn, look at those pretty faces



So yeah, have fun playing around with your new text-mesh

Comments

  1. Just wanted to point out that, while this works, a much easier way is to select your text, hit F9, and the raise the 'Extrude' value (fun fact: you can even bevel the text in the menu). Afterwards, press 'Alt'+'C' to convert the text to mesh. Anyway, keep up the good work :)

    ReplyDelete
  2. THANK YOU MAN YOU ARE BEST :):)

    ReplyDelete

Post a Comment

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