Two of these symbols are used to comment out code.
What are forward slashes?
These are the 4 standard panels that are on the interface when you first open Unity.
What is the; inspector, hierarchy, scene view, and project?
This is represented in the error index as (23,52)
What are Line and character space?
This is the part of the computer that is a permanent memory base needed to start the system.
What is Read-Only Memory? ROM
This symbol ends each line of code and tells the program when to stop reading that line.
What is a semicolon; ?
You can highlight a block of code and press these buttons to comment it out.
What is Ctrl + K + Ctrl +C?
In this menu, you can find the physics settings.
What is the Project Settings menu?
This prevents you from playing in game mode.
What is Compiler errors?
This part of the computer has a North and Southbridge as well as ports to the outside of the computer.
These are two access modifiers that allow the variables to be read by other scripts or not.
What are public and private?
This type of documentation helps to layout how a mechanic in a game will work and how it should be coded. (usually pre- production documentation.)
What is a Technical Design Document?
This tool allows you to rotate, move, and scale objects in the scene.
What is the transform tool?
This statement will show you when a code block is running.
What is debug.Log(); ?
These are the parts of the computer that are not physical objects and are downloaded into the computer's memory.
What is software?
This phrase in C# obtains the position, rotation, and scale of a 3D object.
What is Vector3?
It is important to comment on your code due to a specific reason. (Tell me the reason)
What is Legal Reasons?
You can find your assets from the Unity Asset store here.
What is the package manager?
These two symbols will show up in the interface when there are errors.
What is a white exclamation mark in a yellow triangle and a white X in a red circle?
The computer will still run without these standard hardware devices.
What is monitor, keyboard, and mouse?
This type of statement is used to execute a block of code when a specified condition is true.
What is an if/else statement?
You can go directly to Unity Documentation in the engine by selecting "this symbol".
What is a question mark in a circle?
This panel in the interface shows me all of the errors in the code.
What is a Console?
You can also see errors in your code in real time in this seperate interface as well.
What is the visual studios console?
This is a small piece in the cpu that reads binary code (00100).
What is a transistor?
c# is this type of language.
What is Object Oriented Programming?