Fundumentals
facts
keywords
Code
100

an input

what comes from outside the code

100

the prize for winning

what is a true lime packet

100

keyword

what is the basis for a line of code

100

what would this do

var float speed = 10;

update() {

   transform.position.vector3(speed * time.deltaTime, 0, 0);

};

how to constantly move at 10 on the x-axis

200

an output

what is a screen or speaker

200

the software C# is used with

what is unity

200

the most important Keyword

what is var

200

what would this do

var float age = 0;

update(){

   age += 0.01;

};

how to increase age every moment

300

the end of every line of code

what is a ;

300

the software C++ is used with

what is unreal engine

300

in C#, what does the keyword transform control

what are properties

300

what will this do

var object liam

liam.transform.position.vector3(1, 0, 1);

what is an error

400

the order a computer read word code in

what is top to bottom of catogory

400

Xander's favorite coding language

what is C#

400

in C#, what does public do

how to make other scripts have access to it

400

what would C be

var float a = 2;

var float b = 1.3f;

var int c = a + b;

what is 3