Basics
Syntax
Interface
Variables & Objects
Misc.
100

The property that gives game objects the ability to interact, collide, with other objects, accelerate properly, and be affected by forces like gravity.

What is physics?

100

The language we use in Unity.

What is C#?

100

The window contains all game objects on the screen.

What is the hierarchy?

100

The two types of variables we defined in Unity.

What is public and private?

100

Dragging an asset from the project window to the hierarchy does this.

What is to add an asset to the screen?

200

This is how we add behaviors to objects in Unity.

What is attaching scripts?

200

Every line of code needs this at the end.

What is a semicolon?

200

The window that holds your assets, scripts, and other scenes.

What is the project window?

200

An entity on your Unity screen.

What is a game object?

200

A component we add to assign physics.

What is a Rigidbody?

300

Type of software Unity is.

What is a game engine?

300

Use this to leave comments on your script.

What is double slash?

300

The screen represents what your final game looks like.

What is game view?

300

A data type is a series of characters.

What is a string?

300

Two functions are called upon every frame of the game.

What is Update and LateUpdate?

400

What the transform component shows.

What is the position of the object?

400

Moves and object on the x, y, or z-axis.

What is transform.translate?

400

The interactive sandbox where you can edit your game.

What is scene view?

400

A data type that is a decimal number.

What is a float?

400

Determines the Position, Rotation, and Scale of each object in the scene.

What is the transform component?

500

A resource owned by someone else that we can download into unity.

What is an asset?

500

A representation of the 3D location in the x, y, and z-axis.

What is a Vector3?

500

Displays detailed information about the game object.

What is the Inspector?

500

A variable is visible in other areas of the game.

What is a public variable?

500

[access modifier][data type][name][value]

What is to declare a variable?