Syntax
Logic
Unity
RANDOM
100
How to write a variable

public/private type name 

100

What is the language we are writing in?

C#

100

Whats a prefab

A object that is complete with a script/matierials/etc

100

Build me a function that adds 2 numbers

function add(int x, int y) {

return x+ y

}

200

How to write if statement

if (condition) {}

200

What the difference between "7" + "8" and 7 + 8

"78" and 15

200

What are 2 functions every Class have

start and update

200

What is my name

Jordi

300

How to write a function


function type name(){

}

300

is this T/F "1" == 1

False
300

How do we identify specific objects

Tags

300

What is the component used to handle AI movement

NavMeshAgent

400

How to write a collision function

 void OnCollisionEnter(Collision other)

{

}

400

Whats the difference between object and class

Object is a clone of a class

400

How can we handle physics 

RigidBody


400
Name 3 games that are built in Unity

Phasmophobia, hearthstone, cuphead

500

How to write moving forward

transform.Translate(Vector3.forward * speed * Time.deltaTime);

500
When does Start() occur

At the initiation of a object

500

What is the component used to detect collision

Colliders

500

What are 2 other Programming languages that also starts with C

C C++ Objective C

M
e
n
u