Unity Learn home
View Tutorial Content
Steps

Recorded Video Sessions on 2D in Unity 4.3

Tutorial
Beginner
3 Hours55 Mins
(9)
Summary
An introduction to Unity, the Unity Editor and the basics of making games in Unity from a 2D perspective. Learn about the Editor, GameObjects & Components, Prefabs, Build Targets and other foundation concepts - all using Unity's 2D framework.
Select your Unity version
Last updated: December 09, 2021
4.x
Language
English

1.Introduction to Unity from a 2D perspective

An introduction to Unity, the Unity Editor and the basics of making games in Unity from a 2D perspective. Learn about the Editor, GameObjects & Components, Prefabs, Build Targets and other foundation concepts - all using Unity's 2D framework.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


2.2D Physics: Fun with Effectors

In this live training session we're going to show you how to use 2D Physics Effectors to create areas of your scene which can add physics forces to objects or change their physics behavior. The Effectors we'll look at include Platform Effector 2D, Surface Effector 2D, Area Effector 2D and Point Effector 2D. We'll do this in the context of a platformer style game.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)

###CoinSprayer###

csharp

using UnityEngine; using System.Collections; public class CoinSprayer : MonoBehaviour { public int numCoins = 10; public GameObject coinPrefab; public float offSetRange = 1.5f; // Use this for initialization void Start () { SpawnCoins(); } void SpawnCoins() { for (int i = 0; i < numCoins; i++) { Vector2 spawnOffset = new Vector2 (Random.Range(-offSetRange, offSetRange), Random.Range(-offSetRange, offSetRange)); Instantiate(coinPrefab, (Vector2)transform.position + spawnOffset, Quaternion.identity); } } }

DropCoins

using UnityEngine; using System.Collections; public class DropCoins : MonoBehaviour { public GameObject coinSprayerPf; bool gotHit; void OnCollisionEnter2D (Collision2D col) { if (col.gameObject.CompareTag("Enemy") && !gotHit) { gotHit = true; Instantiate(coinSprayerPf, transform.position, Quaternion.identity); } } }

3.2D Games for Non-Programmers

In this live training session we will explore the Playground Project, a project created by Unity Evangelist Ciro Continisio to help non-programmers begin creating basic interactions in 2D without having to write C# code. This session is appropriate for Unity beginners and non-programmers.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)

Download the Playground Project from GitHub here.
Download the sprite assets from the Asset Store here.

Recorded Video Sessions on 2D in Unity 4.3
Recorded Video Sessions on 2D in Unity 4.3
General Tutorial Discussion
0
0
1. Introduction to Unity from a 2D perspective
0
0
2. 2D Physics: Fun with Effectors
0
0
3. 2D Games for Non-Programmers
0
0