Skip to main content

Posts

Showing posts with the label how to

How To Import and Use Fonts

-Made by Chrome Fx Films To use different fonts in your game, your going to have to acquire some fonts. You can go somewhere like 1001 free fonts  and download ones you like and want to use. When you download the file, you'll need to extract the file if its in  a .zip The text file should have the extension .ttf. If you text files have a FFIL extension, simply rename the font file (yourname.ttf). Drag the text file into unity to import. By default the Character variable should be labeled Dynamic . The Dynamic setting means  that Unity won't pre-generate the texture, so if you look at your material containing your font, It probably will be blank. (read more here) Now your over all objective should be getting your font to look like this (unless you prefer dynamic): Where the characters of the font are not jumbled up and visible. Now usually all you have to do to achieve this is change the  Character  variable fr...

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...

How Do You Make a Skybox in Unity3D?

So we have a nice hellish looking scene in our Unity 3D game, and our default blue background really doesn't belong here   You can change the color of the background.. Or you could add a skybox for more detail and awe your players with the scenery. An example of our Scene with a skybox : So, you may be asking your self  "How do I Make a Skybox ?" .  Before I begin, Unity has already created many nice presets for everyone's use. You can simply go to  Assets>Import Package>Skyboxes. The skyboxes will appear in your projects tab under a folder named "Standard Assets". So to begin with making your own Skybox, you should start out making a new material in your projects tab Now change your new material's shader properties from diffuse to RenderFX>Skybox You material should now show 6 slots(up, down, left, right, front and back) in which to put your textures in to build your skybox like so, Now you s...

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 whi...

How To Sync Up Unity Projects

Want to work on the same Unity Project over multiple computers? Even have multiple people work on one project all at once? Well theirs a free easy method that works! Step 1: Go to dropbox.com . Make an account and download their soft ware. You have 2GB of space for free! It's not much to expand on that either, but I've yet to run across any space issues. Step 2: Open up Unity. Go to file>New Project. Under project location, Browse, and create a new folder under your dropbox folder. Make that where your project lies. Step 3: Go share! You can install dropbox at any computer and log in with your account. Your assets will be loaded into the dropbox folder. To open you Unity project from dropbox, simply go to file>open project, then find the folder that contains your unity project and hit open. You can also log into your dropbox account, and send other drop box users an invitation to share your folder, you have to know their email. When they accept their drop box ...