Tuesday, April 16, 2013

Tips and tricks collected for Unity3D game development #1

Hey everyone,
I've decided to write a post containing random tips and tricks I've found along the way for Unity3D development.

As a software engineer for over 14 years, I like to break apart each new development environment I get into - and Unity wasn't any different :)

So, here goes:


Dynamic, static and kinematic colliders

There are 3 types of colliders in Unity3D:
  1. Dynamic colliders - Used for collision detection for dynamic objects (enemies, bullets, boulders, etc) - the setup is pretty straightforward, a rigidbody is attached to a collider
  2. Static colliders - Used for collisions for anything that never moves in your level (level floors, walls, obstacles, etc) - these should only contain a collider without a rigidbody.
  3. Kinematic colliders - Used for collisions for anything that moves using code and not physics (moving platforms, elevators, etc) - these must have a rigidbody marked as kinematic with a collider.
Adding kinematic rigidbodies to kinematic colliders greatly improves performance  as moving static colliders around causes internal calculations every time you move them.
Kinematic rigidbodies solve this problem.

Everything that doesn't move, rotate or scale should always be marked static

This tells Unity that the object can be optimized for static batching - this greatly lowers active draw calls and removes a lot of calculations from the CPU.

Use Handles, Gizmos and Custom Editors

Gizmos are great to show custom logic inside the editor - for example, show the range an AI unit can spot the player (using Gizmos.DrawWireSphere for example), draw a movement path (DrawLine) and countless other scenerios.

Handles are terrific to help you edit custom properties visually on your game objects.
For example, using Handles.PositionHandle to move around a target, RadiusHandle to edit a radius for an AI unit, etc.

Custom Editors will make your life incredibly easier when used on medium-large scale projects and the possibilites to using them are endless.

MonoBehaviour's built-in properties

Recently I've used Unity's Pro profiler, and changing a class that accessed MonoBehaviour.transform about 3 times every frame - calling MonoBehaviour.transform/collider/renderer/etc is equivellant to using MonoBehaviour.GetComponent - which isn't too efficient if you use them often.

Instead, define a private property inside your class, store the required component there, and later access it directly.

Doing this, dramatically improved frame cost for that class.

In general: Don't use Unity's GUI functions

Unity's GUI functions are very costly and should be avoided at all costs.
Instead, use a 2D framework (NGUITK2DEX2D, etc) that projects all GUI into a 2nd camera, which has a higher depth and has it's clear flags set to none.

This way you will enjoy the benefits of dynamic batching, higher performance and scalable GUI on an orthographic camera.

---

So that's it for today, I hope my tips will help someone out there.
Drop a comment if you have any ideas, feedback or find any mistakes that I've posted.

Cheers.

Sunday, April 14, 2013

Hello world! (Or why you should always keep your drivers up to date)

Hello world! (Or why you should always keep your drivers up to date)

Hello everyone,
I have no idea how you stumbled upon my blog, but I'm a game developer and designer. Hi.
I've created some quasi-famous browser games, and several less famous ones for Facebook/Mobile.

I work in a small indie studio and develop several games - currently I'm mainly working with Unity3D (Which is a great middleware for quick game development).

I hope to provide useful information, weird tricks and tips and in some random thoughts and ideas regarding gaming, game development, programming and design.

For my first post - I have a completely irrelevant post to gaming, and it is more technical.
After more than a year of having network issues in my PC (single threaded downloads get cut off about 90% of the time, including streaming videos) - I have solved the issue today, making myself feel very stupid along the way.

The problem went about as the following:
  1. Downloads using browsers would almost always get stuck midway (without the ability to resume)
  2. Streaming videos would get stuck and wouldn't buffer, and I had to forward the video to re-buffer it
  3. Several games would kick me out every now and then, and I'd had issues connecting to them

If anyone has encountered this issue, the solution is so simple it brought me to tears:
  1. Google your network adapter (can be found in the device manager)
  2. Find appropriate drivers for it
  3. Download & install

Boom - that fixed it for me. I just had to share this with the world, in case I even help out another helpless soul out there, I did my job.

I'll write a few posts here, hopefully more relevant to game development.

Cheers.