/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

sudonull.com
| | www.jeremymorgan.com
5.2 parsecs away

Travel
| | Learn how to create an object and move it around in Unity with your keyboard. This is a simple tutorial using a few lines of code.
| | kylewbanks.com
4.2 parsecs away

Travel
| | A common requirement for 2D games is to have some sort of fullscreen background, be it a color, sprite, particle system, or anything else, to provide mood and aesthetic to the contents of your game. While a static color can be used to great effect, this post will go over the technique that I use for fullscreen backg...
| | bloeys.com
5.4 parsecs away

Travel
| | In Part 3 we setup the basis of our simple path/waypoint system, however we still can't use it easily because the gizmos we used are just simple graphics, so in this post we will create interactive tools in the scene view that we can use to control objects, which we will do using Handles. According to the Unity Docs: "Handles are the 3D controls that Unity uses to manipulate items in the scene view.
| | kylewbanks.com
18.4 parsecs away

Travel
| When discussing performance optimization of Unity games, be it 2D or 3D, object pooling is a commonly referred to technique to gain significant improvements. An object pool is essentially a set of pre-instantiated objects that can be recycled when they are no longer in use, and eventually reused as required.