Have you ever wished you could create your very own video game? Want to learn more about how your …
Continue Activity...Open Unity Hub.
Navigate to the projects tab.
Click the new button in the …
Continue Activity...The Unity Editor can be intimidating at first!
Don't worry, this short guide will explain all!
The Project …
Continue Activity...Tool | Hotkey | Description |
---|---|---|
Hand Tool | Q | Move your scene around in the view. |
Move Tool | W | Select GameObjects and … |
In this tutorial, we will import our first Asset and script SpriteCharacter movement!
Download this set of …
Continue Activity...By using Tilemaps, making a level is like painting!
To create a Tilemap, right-click in …
Continue Activity...Collision will let SpriteCharacter bump into objects!
In order to simulate collision …
Continue Activity...In this guide, you will script the Camera to follow SpriteCharacter!
Cinemachine is a package that …
Continue Activity...This guide will show how to add a Health Collectible!
Open SpriteController script.
We're going …
Continue Activity...In this guide, we will use UI Builder to create the User Interface for HealthBar!
This guide will show how to code HealthBar to respond to in-game events!
We need …
Continue Activity...A Damage Zone will reduce the health of SpriteCharacter!
First, import DamageZone.png into Assets …
Continue Activity...It's time to add a Robot that will patrol the area!
Import Robot.png into …
Continue Activity...Let's add a Walking Animation to the Robot!
Double-click on the Robot prefab and add an …
Continue Activity...This guide will show how to add a Projectile Action that will activate with Left-Mouse Click!
Now we can add a reaction to Robot when coming into contact with Projectile!
We …
Continue Activity...In this final guide, we will add Background Music and Sound Effects!
Create an empty GameObject …
Continue Activity...using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DamageZone: MonoBehaviour {
void …