A look into unity

Hello!

I'm Emilio Wong

CSI's best source of memes.

You'll find me in:

@EmilioWG

/emilews

I'm a 3rd semester ISI student, and 

Topics

  • What is Unity?
  • How does it work?
  • Why to use it?
  • Made With Unity
  • Where to learn

What is unity?

Simple: a game engine.

Not as simple: a set of tools to make videogame development easier and faster.

how does it work?

Working with scenes and objects.

coding

public class NewBehaviourScript : MonoBehaviour
{

    // Use this for initialization
    void Start()
    {

    }
    // Update is called once per frame
    void Update()
    {

    }
}

C#

#pragma strict

function Start () {
	
}

function Update () {
	
}

JavaScript

coding

public class luz : MonoBehaviour {
	void Start () {
	}	
	void Update () {
        	if(Input.GetKeyDown(KeyCode.R)){
			GetComponent<Renderer>().material.color = Color.red;
		}
	}
}
#pragma strict

function Start () {
}
function Update () {
	if(Input.GetKeyDown(KeyCode.R)){
        GetComponent(Renderer).material.color = Color.red;
    }
}

C#

JavaScript

drag and drop

Asset Store

scene and stuff

why to use it?

  • It's free*
  • It teaches you the fundaments
  • It's flexible and robust
  • It's fun

*It uses a subscription model

made with unity

Kerbal Space Program

made with unity

Cuphead

made with unity

Firewatch

made with unity

Monument Valley

made with unity

Night in the Woods

made with unity

Adam

made with unity

Sonder

where to learn

thanks!

Any questions?

Made with Slides.com