Explore all newline lessons
lesson
Conditional statementsUnity for Beginners - Animal CrossingImagine 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.
lesson
ArraysUnity for Beginners - Animal CrossingArrays are a collection of values of the same data type. They are extremely useful data structures and help us write more complex code.
lesson
CommentsUnity for Beginners - Animal CrossingComments help to document your code and inform the intent of your code.
lesson
OperatorsUnity for Beginners - Animal CrossingOperators are used to carry out operations on operands. Operands are values or variables on which an operation is carried out.
lesson
Data typesUnity for Beginners - Animal CrossingWe 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.
lesson
VariablesUnity for Beginners - Animal CrossingA 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).
lesson
Introduction to scripting in UnityUnity for Beginners - Animal CrossingIn 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.
lesson
Unity asset store overviewUnity for Beginners - Animal CrossingLearn how to add more objects to your game world by importing assets from the Unity store.
lesson
Add objects to the terrainUnity for Beginners - Animal CrossingIn 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.
lesson
Create a small pondUnity for Beginners - Animal CrossingWe'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.
lesson
Create a pathwayUnity for Beginners - Animal CrossingLet's create a pathway for our character to walk on.
lesson
Create grass and hillsUnity for Beginners - Animal CrossingWe will create a cartoon grass landscape for our game along wityh some rolling hills using Unity's terrain tools.