Chelsea Cruise·Feb 2, 2022For Loops | C#What it is: knowing exactly how many times you want to loop through a block of code, use the for loop instead of a while loop.
Chelsea Cruise·Jan 31, 2022Switch Statements | C#Use the switch statement to select one of many code blocks to be executed.
Chelsea Cruise·Jan 27, 2022If…Else Statements | C#WHAT IT IS: If-Else statements allow you to create logic based on some conditions and they work very well with variables. - NOTE: If…
Chelsea Cruise·Nov 17, 2021How to set your game application up with a Quit button | Unity 2DIf you’re developing for web or PC, you’ll need a quit button so the user can exit your game without frustration. Here how to do it!
Chelsea Cruise·Sep 16, 2021How to Use Post Processing | Unity 3DPost Processing allows us to apply image effects and filters to our video games. It’s like a Photoshop for your game!
Chelsea Cruise·Aug 25, 2021Understanding Coroutines in Unity using C#I will demonstrate a delay timer & I will showing the results in the console.
Chelsea Cruise·Aug 10, 2021How to load different scenes using script | Unity 3DThis is definitely something I always forget how to do. It’s a very simple process. Time to make a note of it ;)
Chelsea Cruise·Jul 2, 2021Enemies: Astroid Explosion! | Unity 2DObjective: Create an explosion sprite sequence when we shoot our Astroid.
Chelsea Cruise·Jul 1, 2021Enemies: Creating the Astroid behavior | Unity 2DObjective: Create a rotating effect for our Astroid.
Chelsea Cruise·Jun 30, 2021Creating Enemy Explosions | Unity 2DObjective: Play a sequence of explosion sprites when our enemy has been destroyed in the game.