Game Development
Unity
C#
Misc
Randomness
100

When using Unity, how do you test out your game?

What is use the play button?

100

What is unity used for?

Creating video games.

100

What does this line of code do?

public float jumpHeight = 3f;

What is set the jump height to 3?

100

This iconic game, released in 1985, features a plumber named Mario who embarks on a quest to rescue Princess Peach from the villainous Bowser.

Super Mario Bros.

100

A visual representation of a character or object in a game, often consisting of a sequence of images.

Spritesheet

200

What do you call objects like characters, trees, props etc. in your game project?

What is assets?

200

What is the default programming language used by unity?

C#

200

How often is void Update() called?

What is once every frame?

200

This term refers to a suite of modules for controlling the Unity camera. It solves the complex mathematics and logic of tracking targets, composing, blending, and cutting between shots.

What is cinemachine?

200

This term returns to a container that can hold multiple pieces of information, in this case we are going to use it as a GameObject

What is an array?

300

This simply means to change the position of an object. This is a method of the transform class

What is Transform?

300

Unity supports input from many types of input devices, name one:

What is

Keyboards and mice
Joysticks
Controllers
Touch screens
Movement-sensing capabilities of mobile devices, such as accelerometers or gyroscopes
VR and AR controllers

300

How often is void Start() called?

What is before the first frame update?

300

This critically acclaimed action-adventure game, released in 2013, follows the journey of Joel and Ellie as they navigate a post-apocalyptic world, facing various challenges and emotional moments.

The Last of Us

300

Clones the object and returns the clone. This function makes a copy of an object in a similar way to the Duplicate command in the editor.

What is Instantiate?

400

This feature in Unity allows developers to see how their game will perform on different devices without leaving the editor.

What is Game View?

400

Name a primitive object in Unity

What is

cube
sphere
capsule
cylinder
plane
quad

400

What line of code quits the Unity application?

What is Application.Quit?

400

This Unity created game is a chaotic co-operative cooking game for 1-4 players. Working together these brave chefs must prepare, cook and serve up each order before the baying customers storm out in a rage.

What is Overcooked?

400

This refers to a component that allows a GameObject to react to certain physics (mass, gravity, momentum, etc.)

What is a Rigidbody?

500

This Unity class is used to manage scenes, allowing you to load and unload them at runtime.

What is the SceneManager class?

500

What object is in the hierarchy when you first start a new unity 2d project?

Main Camera

500

This method returns the amount of time in seconds that elapsed since the last frame completed. This value varies depending on the frames per second (FPS) rate at which your game or app is running.

What is Time.DeltaTime?

500

This is a survival game where 100 players fight against each other in player versus player combat to be the last one standing. Players skydive onto a small island, are equipped with an axe and must scavenge for more weapons, while simultaneously avoiding a killer electrical storm. As players are eliminated, the field of play also gets smaller, meaning players are put closer together.

What is fortnite?

500

A comprehensive document that outlines the vision, mechanics, goals, and other essential elements of a game, serving as a blueprint for the development team.


Game Design Document