NEW
Font size
WorksheetsUnity Basic Quiz
Total questions: 10
Worksheet time: 50mins
What is the name of the game engine we are using?
Unity
Unreal Engine
C# Engine
GameMaker
What type of coding language (script) are we using with Unity?
C#
C++
Python
JavaScript
What type of input will move a player from left to right?
verticalInput
Public Float Speed
horizontalInput
If/Then Statements
What is the following statement used for: // Keep the player inbounds
This is simply a comment and does not affect the code or game play.
This is the code that keeps the player from falling off of the playing area.
Because the text is green, it is the instructions to make the player "Go".
This is a comment that controls what is displayed on the game screen during game play.
In the current Unity - Unit 2 Project, the player is throwing food at animals. What is another name for the "food" that is being thrown?
projectile
property
player
project
Which of the following code, correctly sets the space bar as the key to launch the projectile (food)?
if ((SpaceBar.Up) then Projectile.Fire)
if (Input.GetKeyUp(KeyCode.Spacebar))
if (Input.GetKeyDown(KeyCode.Space))
if (Output.GetKeyUp(KeyCode.Space))
True or False: Coding in Unity (C#) requires the user to pay attention to spelling, capitalization and using correct punctuation marks in order to make the coding valid.
True
False
True or False: It is ok to continue moving to the next step (next lesson) in Unity, even if you are getting errors and your game is not working correctly.
True
False
True or False: Unity is the only game engine available. All video games are coded using Unity software.
True
False
True or False: Prefabs are a special type of component that allows fully configured GameObjects to be saved in the Project for reuse. These assets can then be shared between scenes, or even other projects without having to be configured again.
True
False
