Blog



Unity Reference

One of the best aspects of working with the Unity game engine is its community. Because it’s so widely used and supported, useful information about the engine can be found all over. Here is a collection of some links and videos that I’ve found extremely useful in my time working with Unity. Unity 50 Tips and Best Practices for Unity (2016 Edition) – Herman Tulleken Editor GUI Styles string list – MadLittleMods Optimizations and Garbage Collection “0 – 60 fps in 14 days!” What we learned trying to optimize our game using Unity3D. – Amir H. Fassihi Optimizing garbage collection in Unity games – Unity Shaders



Action Lists Part 2

Action lists by themselves are very powerful. As I hopefully showed in part 1, they provide an easy way to chain multiple actions together to form more complex and interesting behavior. But, there are often types of actions that execute in similar ways. If we have an action that scales an object over time, as well as an action that changes an object’s color over time, we have two actions that are repeating the same kind of timing logic. If the time-based logic is abstracted and shared among all actions of that type, it makes things a lot simpler to



Action Lists

Action lists are one of my favorite data structures for games. But from what I’ve found, they don’t seem to be very well known outside of the small community of students at DigiPen Institute of Technology. An action list is simply a list of actions which updates sequentially. An action can block the action behind it, preventing others to run until it’s finished, or can run concurrently. This provides a simple yet powerful interface that can be used for AI, animation, UI, and many other things. Here is a quick demo using the Unity3D Web Player to give you an idea