-
Game Dev Notes #4 – Tilevania
These are notes from the Complete C# Unity Game Developer 2D Udemy Course
-
Game Dev Notes #3 – Quiz Game
These are notes from the Complete C# Unity Game Developer 2D Udemy Course UI Right click -> Create canvas Any element that shows up on the canvas needs to be a child of the Canvas. Canvases use Screen Space instead of game space. The camera takes care of world space, but screen space is something…
-
Game Dev Notes #2 – Snowboarder
These are notes from the Complete C# Unity Game Developer 2D Udemy Course Profiles Unity comes with lots of existing packages that contain default profiles. We can override them by going to assets -> create -> 2D -> Sprite Shape Profile. Then we can click and drag onto the Profile section in the inspector. That…
-
Game Dev Notes #1 – Race Car
These are notes from the Complete C# Unity Game Developer 2D Udemy Course Debug Debug.Log( “Message” );Debug message to console. Collision Add components: [Shape] Collider (2D) Play with the shape depending on what kind of collision feel you want. Rigid Body Turn gravity to 0 if this is not a platformer Add rigid bodies to…