Unity Questions Flashcards
Verify the Statement: in a Unity script, start may not be called on the same frame, if the script is not enabled at initialization time
The statement is valid
What game objects are primitive that can be created using Game Object.CreatePrimitive
Cube, Plane, Quad, Sphere
How many layers does unity Generate?
Unity Generates 32 Layers
Which value for GameObject.SetActive() in Unity, will make the GameObject active?
The value is True
In Unity, when objects are instantiated during game play, thier Awake function is called after the script functions of the scene objects have already completed
That is True
Select the method in GameObject in unity which adds a component class to the game object
AddComponent
What is not a primitive that can be created using the GameObject.CreatePrimitive function In Unity
Square (2D objects)
Which view in Unity simulates what your final rendered game will look like through your scene cameras
The Game view
Where are the play, pause, and step controls present on the Unity editor window interface?
The Project window
Which module file format is not supported by Unity
Unity does not provide built in support for Cinema4D files. They should be exported from the proprietary software as .fbx files
Assets saved as .ma, .mb, .max, .c4d, or blend files fail to import unless you have the corresponding 3D modeling software installed on your computer.
What file formats are supported by Unity
Unity supports
Standard file formats: .fbx, .dae(Collada), .dxf, .obj.
These file formats are widely supported, they are often smaller than the proprietary equivalent, which makes your project size smaller, and faster to iterate over.
Proprietary file formats
You should not use Proprietary file formats in production, instead export to the .fbx format whenever possible
Unity can import proprietary files from certain 3D modeling software such as
Autodesk Maya
Blender
Modo
Cheetah3D
Applications that do not use. .fbx as an intermediary, Unity must convert them into. .fbx files before importing them into the editor. Such as
SketchUp
SpeedTree
Autodesk 3Ds Max
)) p
What is the location of the button Unity Cloud, on Unity editor window?
The toolbar
What is the location of the button for Unity Collaborate on Unitys Editor window interface
The Toolbar
Which view in Unity can show a 3D or 2D perspective
The Scene
In a Unity script, Awake is called only if the script is enabled
The statement is invalid