Lessons

Explore all newline lessons

Tags
Author
Pricing
Sort By
Video
Most Recent
Most Popular
Highest Rated
Reset
Conditional statements

lesson

Conditional statementsUnity for Beginners - Animal Crossing

Imagine if your code could do different things based on different conditions. Well, it can! Using conditional statements we can control the flow of our programs.

Arrays

lesson

ArraysUnity for Beginners - Animal Crossing

Arrays are a collection of values of the same data type. They are extremely useful data structures and help us write more complex code.

Comments

lesson

CommentsUnity for Beginners - Animal Crossing

Comments help to document your code and inform the intent of your code.

Operators

lesson

OperatorsUnity for Beginners - Animal Crossing

Operators are used to carry out operations on operands. Operands are values or variables on which an operation is carried out.

Data types

lesson

Data typesUnity for Beginners - Animal Crossing

We will discuss the data types that will be used in our scripts. First let's understand what we mean by data types. A data type can be defined literally as a *type of value or values*. For example, your age is an integer, and your first name is a type of data composed of a sequence of characters.

Variables

lesson

VariablesUnity for Beginners - Animal Crossing

A variable is a reference to some value in memory. Think of it as a container for holding a value. Before a value can be stored, its type must be specified (by default C# is a strongly typed language).

Introduction to scripting in Unity

lesson

Introduction to scripting in UnityUnity for Beginners - Animal Crossing

In this module we will be covering the basics of scripting in Unity with C#. If you haven't done any programming before, don't worry - we will cover the core concepts. Additionally, whenever we write a C# script for our game, I will explain the lines of code.

Unity asset store overview

lesson

Unity asset store overviewUnity for Beginners - Animal Crossing

Learn how to add more objects to your game world by importing assets from the Unity store.

Add objects to the terrain

lesson

Add objects to the terrainUnity for Beginners - Animal Crossing

In this lesson we will add objects such as a garden, house and foresat to our game world. I've tried to keep things simple here so we'll only include objects which we will need later on, like a watering can.

Create a small pond

lesson

Create a small pondUnity for Beginners - Animal Crossing

We're going to create a small pond. There are free and paid-for water assets available with which you can build simple or complex bodies of water, but for now we will just make a very simple pond.

Create a pathway

lesson

Create a pathwayUnity for Beginners - Animal Crossing

Let's create a pathway for our character to walk on.

Create grass and hills

lesson

Create grass and hillsUnity for Beginners - Animal Crossing

We will create a cartoon grass landscape for our game along wityh some rolling hills using Unity's terrain tools.