20 Best Unity Tips and Tricks for Game Developers

Published January 26, 2017 by Damian Wolf, posted by damianwolf
Do you see issues with this article? Let us know.
Advertisement

Unity is a popular game development platform. It is impressive regarding functionality, and also caters to the different game development requirement. Game developers can use Unity to create any type of game imaginable, from world-class RPG games to the most popular augmented reality game, Pok?mon Go. With widespread use around the world, many developers use Livecoding to showcase their Unity skills and build an audience even before the game is released! Furthermore, many beginners utilize Unity to learn game development or game programming in general. This is Daniel from Preston, United Kingdom, is working on his first game, Colour Me Crazy. You can check his development here. The real impact of Unity is more diverse as it is a perfect tool for both indie game developers as well as big teams working on a project. The ecosystem also helps Unity to sustain and grow in the right direction. Due to its complexity--it handles design, scripting, debugging, and other aspects of game development--Unity can be tough to manage. image001.jpg And that's why we will go through the 20 Best Unity Tips and Tricks for Game Developers.

20 Best Unity Tips and Tricks for Game Developers

Before we start, understand that Unity is updated frequently, so the best tips listed here can differ from version to version. It is always a good idea to introspect and modify the tips according to your project and the version of Unity you are using. Let's get started with the tips.

Five Workflow Improvement Tips

Workflow improvement tips are clearly aimed to help you improve your game development process. They will ensure that your project moves faster and in the right direction. Let's list the five best workflow improvement tips for Unity game developers: 1. Source control your work for maximum effectiveness - Make proper use of source control to improve your workflow. This will ensure that you don't lose any of your work and also enable you to go back and forth to check what's changed. You can serialize assets, use branching strategy to maximize control over production, and use sub-modules to maximize effective control of your source code. 2. Ensure that you decide on the scale of assets you are going to use in your project. The decision depends on the type of project you are working on, and the resolution the game is aimed to run at. 3. Always automate your build process to save time. Automating the build process will also ensure you can work on different game versions simultaneously, and also help make small changes now and then without going through the whole build process after every change. 4. Properly document your work. There can be no big disaster when you find yourself stuck over a piece of code that you wrote earlier but forgot to do code documentation. Also, documentation can help other teammates to better understand your work and collaborate on the project. You can use Livecoding for video code documentation. Read this to learn more. 5. Test scenes can become a bulky part of the project and they are useless after the project is done. To make sure that your project files don't become bulky, keep test scenes separate from your code and delete them when the project is complete.

Five Coding Improvement Tips

Now let's move to the most important part of game development, i.e., coding! Let's get started. 1. Use namespace to your advantage. Namespace enables you to handle your code better as it allows you to avoid any classes with 3rd-party libraries and other classes within your code. 2. Coroutines is a great tool for solving many game problems, but they are equally hard to understand and debug. If you are using Coroutines, make sure you know what you are doing. Understand how they work in sequence and parallel mode, etc. Read more about coroutines here. 3. Assertions can be your best friend when finding bugs in your code. You can use the Unity.Assertions.Assert class for using assertions. 4. Extension methods are great for improving your syntax readability and management. 5. Localization should be done in separate files. Only keep one language in one file.

Five Debugging Improvement Tips

Debugging can be a tough nut to crack. With proper debugging, you can make your game release-ready and ensure that final game quality is maintained. Let's get started with some debugging tips for Unity. 1. Master the debugging tools available in Unity. The debugging tools in Unity provide a lot of functionality, including functions that can effectively help you debug your game. Utilize functions such as Debug.Break, Debug.Log, Debug.DrawRay, and Debug.DrawLine to your advantage. The first two functions are used for understanding game state, whereas the last two functions helps you to visually debug the game. You can also use the debug visual inspector for locating runtime private fields. 2. As Unity doesn't provide any special IDE to work with, you can opt to use any IDE for your development work. It is alshttps://unity3d.com/learn/tutorials/topics/scripting/debugging-unity-games-visual-studioo a good idea to master the IDE debugging features. Check out Visual Studio's debugging article to learn more. 3. Unity has released many test tools. You can check them out and enhance your debugging methods. You can also check the tutorial for Unity test tools here. In addition, you can use the available tools for running scratchpad tests. Scratchpad tests are more conventional, and don't require you to run a scene. 4. Console logging can be very useful if used in conjunction with an extension. For example, you can use Console Pro Enhanced to make your console amazing! 5. You need to debug differently to debug visual animation. The Visual debugger can help you do that by generating graphs over time. For example, you can use Monitor Components to do so.

Five Performance Improvement Tips

Optimizing your game optimization is necessary to make your game successful. The game could be great, but is still plagued with performance issues. And games with performance issues are not received well by the end users. To make sure your Unity game is well-optimized, try out the following tips. 1. Before you start optimizing your game, you need to find out where the performance issues are coming from. For starters, it is a good idea to find out whether or not it is coming from the GPU or the CPU. Finding the culprit will help you approach your optimization better, because both GPU and CPU have different performance optimization strategy. 2. Performance optimization is important, but don't write code that is complex to read and hard to maintain. The decision should be made according to what performance gains you are getting for the change. If it is not substantial, ignore it. If the gains are high, keep them and do proper code documentation for others to go through the code. 3. Try to share object material in a scene to improve performance per scene. 4. Check if the game work better by lowering the game resolution. If that's the case, use better materials and algorithm to make it work on a higher resolution. 5. Use profiler to understand and track performance problems. You can get started here.

Conclusion

Game development is a complex trade, and requires mastery of different skills. The above tips will help you to make your game development more refined. Additionally, the above tips are not exhaustive at all. It is all about mastering your craft and learning on the go. If you are a Unity game developer, you can showcase your work and build audience at the same time by broadcasting your work on Livecoding.tv. The platform also offers unique value on feedback as other game developers chip in by sharing their thoughts to help improve the community. Do you think the article lack some important points? If so, don't forget to comment below and let us know.

Cancel Save
0 Likes 4 Comments

Comments

Navyman

The bolding style of highlighting dropped off in the later sections, it would be nice for a constant style throughout to grant the reader the feeling the rest is also useful information.

January 28, 2017 05:09 PM
vanka78bg
Many of these tips apply to game development in general, and not solely to Unity. This doesn't make them less useful with Unity, of course. Nice article!
January 30, 2017 05:43 PM
DemonDar

I would have preferred tips coming from years of unity experience, and not general tips, but those are good reminder for newcomers to Unity so nice article :).

March 06, 2017 06:31 PM
Orymus3

I feel the article might be aimed primarily at hobbyists, but the content is worthwhile. Reviewed the article positively.

May 31, 2017 01:18 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!

Game developers can use Unity to create any type of game imaginable, from world-class RPG games to the most popular augmented reality game, Pok

Advertisement

Other Tutorials by damianwolf

damianwolf has not posted any other tutorials. Encourage them to write more!
Advertisement