When using Unity, how do you test out your game?
What is use the play button?
What is unity used for?
Creating video games.
What does this line of code do?
public float jumpHeight = 3f;
What is set the jump height to 3?
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.
A visual representation of a character or object in a game, often consisting of a sequence of images.
Spritesheet
What do you call objects like characters, trees, props etc. in your game project?
What is assets?
What is the default programming language used by unity?
C#
How often is void Update() called?
What is once every frame?
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?
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?
This simply means to change the position of an object. This is a method of the transform class
What is Transform?
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
How often is void Start() called?
What is before the first frame update?
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
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?
This feature in Unity allows developers to see how their game will perform on different devices without leaving the editor.
What is Game View?
Name a primitive object in Unity
What is
cube
sphere
capsule
cylinder
plane
quad
What line of code quits the Unity application?
What is Application.Quit?
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?
This refers to a component that allows a GameObject to react to certain physics (mass, gravity, momentum, etc.)
What is a Rigidbody?
This Unity class is used to manage scenes, allowing you to load and unload them at runtime.
What is the SceneManager class?
What object is in the hierarchy when you first start a new unity 2d project?
Main Camera
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?
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?
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