Re: What programming language should I learn first?

Not a lot of people mention it, but learning SQL data storage is actually a really good starting place. It has nearly universal application later, and it also teaches you about data types. You can parlay the knowledge right into making PHP scripts to read the data and print it on screen, and then HTML ...

Pixel Perfect Billboard Sprites 2

Pixel Perfect Billboard Sprites
I spent some time researching the issue of billboard sprites. I personally believe that the correct course of action is not to just perform a Transform.LookAt, but to actually align all billboard sprites to point the same direction that the camera is pointing. If you simply have each sprite look at the camera, multiple billboards across your screen will ...

Unity Extension for Logging Syntax

I have grown tired of writing the line of code required to log a variable to the Unity console. It gets old. In C# there is a concept by the name of “Extensions” that lets you extend classes that are locked and cannot be inherited from. Using extensions I was able to improve the syntax ...