public/private type name
What is the language we are writing in?
C#
Whats a prefab
A object that is complete with a script/matierials/etc
Build me a function that adds 2 numbers
function add(int x, int y) {
return x+ y
}
How to write if statement
if (condition) {}
What the difference between "7" + "8" and 7 + 8
"78" and 15
What are 2 functions every Class have
start and update
What is my name
Jordi
How to write a function
function type name(){
}
is this T/F "1" == 1
How do we identify specific objects
Tags
What is the component used to handle AI movement
NavMeshAgent
How to write a collision function
void OnCollisionEnter(Collision other)
{
}
Whats the difference between object and class
Object is a clone of a class
How can we handle physics
RigidBody
Phasmophobia, hearthstone, cuphead
How to write moving forward
transform.Translate(Vector3.forward * speed * Time.deltaTime);
At the initiation of a object
What is the component used to detect collision
Colliders
What are 2 other Programming languages that also starts with C
C C++ Objective C