an input
what comes from outside the code
the prize for winning
what is a true lime packet
keyword
what is the basis for a line of code
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
an output
what is a screen or speaker
the software C# is used with
what is unity
the most important Keyword
what is var
what would this do
var float age = 0;
update(){
age += 0.01;
};
how to increase age every moment
the end of every line of code
what is a ;
the software C++ is used with
what is unreal engine
in C#, what does the keyword transform control
what are properties
what will this do
var object liam
liam.transform.position.vector3(1, 0, 1);
what is an error
the order a computer read word code in
what is top to bottom of catogory
Xander's favorite coding language
what is C#
in C#, what does public do
how to make other scripts have access to it
what would C be
var float a = 2;
var float b = 1.3f;
var int c = a + b;
what is 3