Skip to main content

2D Level Visual (De)compisition and Preparing for a 2D Game

Alrighty you guys, I haven't been on in a while, as you can see with the massive delay between the Making Images in GIMP Part 2 and the to-be Making Images in GIMP Part 3, school has been piling on the projects and I can only work the video games during the slim slots of free time I have, so in order to keep from going completely off the map with blog posts, this will be a tipper in the composition of 2D game levels.

In the game we are currently working on right now, we have to focus on keeping a consistent style of a Kirby-esque side-scroller.  Doing something like this has its ups and downs, such as the nostalgia that comes from playing a straight-on game side scroller where the objective is clear while the game itself has some difficulties.  Arranging the actual environment, however, is quite the stress-inducer, and requires you to become organized if you aren't already, otherwise you won't be able to get through it without some  a hella ton of tears.  So get the folders ready, the will power revving, and the wrist exercised, because this is going to tax the hell out of your artist.


  • First off, get organized.  Don't just set up folders though, set objectives for yourself, create some lists and stick to them.  As tempting as it is to do the easiest stuff first, in the long run it's better to do the most important - though maybe more difficult- assets first.  This will typically be the environment (i.e. ground, background, transition, obscurities, etc.)


Mmm, look at that sweet, sweet, organization.  Keeping everything clean will make things easier for you and everyone you are collaborating with.



  • Second thing, get yourself physically ready.  You need to be able to sit down and get things done.  Eat a snack, drink a drink, take a piss, and DO SOME STRETCHES.  Stretch your back, touch your toes, prepare your wrists.  I mean, I'm not going to lie, it's going to get pretty boring, drawing everything, cleaning everything, making sure what needs to loop actually loops properly.  I mean, I have three different sets of trees, you just have to push yourself and remember that the ultimate outcome will actually look good.  You are going to want to cry and go to bed to the sweet sound of apathy.  But do you know what you have to do?


  • The actual working part is probably the worst part.  Through out it, you may find that somethings looks really good as individuals, but looks terrible all together, or vice versa, the best thing to remember is that things can be changed.  I've gone back and revised a lot of things, it's just a part of the process.  You have to keep in mind, a lot of things will come in sets.  Such as the trees, in order to keep things from looking too consistent, it's important to have a variety of scenery so that the player doesn't get bored.  Something just as important as variety though, is the way you layer things.  The game is 2D, but you still want to give it depth.  This is where staying organized (see step one) is important.  More than just foreground and background, you want something that gives the game more than just minimal depth.  This is where singular trees, rocks, fungi, etc. comes in.  The way that these obscurities layer on top of each other as well as inside the actual game gives extra pizzazz to the environment.  This gives the player the idea that you actually understand how perspective works if you size everything correctly (things get smaller as they go back, bigger as they come forward).  The best mindset to have probably is to not expect everything come out right the first time, and therefor not be daunted by mistakes.


Here's an example of what the scene looks like prior and during rendering of game play.  It's all about the layers and will power.  Things will come together in the end, you just have to believe in your capabilities.





Comments

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