Top Down 2D Character Controller – Unity Tutorial

Created a tutorial for a top down view game, in it we learn how to create and and animate a character as well as create the code to move him around the screen.

Some things to note. In it I use the Rigidbody2D and set its velocity in the Update method. Most times, any code involving the Rigidbody and physics will be put in FixedUpdate as is the standard. In this case its simply setting the speed between 2 values so I deemed it ok.

The Princess Paint Trials GameJam Submission

Heres my game jam submission for the week 88 Weekly Game Jam. It was an interesting little project, and I definitely tried to make the game alive with sound, and different game effects.

I learned that sound in a game is extremely important, especially for the experience that you’re trying to convey. Ask yourself what experiences do you want your players to have? Do you want the player to feel fear, anxiety, happiness, anger or joy? How can sound and music help in this effect? Even though sound is an important part of a game, its still only a small part of the whole experience that a game delivers. You also have the appearance and the type of art that the game uses, the color palette, the game mechanics of the game, the interaction between your character and the world, and many more items. How do you want your game to be experienced by players?

Unity Event Based Health GUI

Learn how to use events to keep track of player statistics, the one I go over in this video is health, but you can change and tweek it for whatever events, data, and gui that you need.

Extra Delegates Info
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/events/

Extra Events Info
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/delegates/


Code
https://github.com/luhdriloh/events_based_ui