NEW
Font size
WorksheetsUnity Scripting Beginner (EN)
Total questions: 10
Worksheet time: 5mins
In Unity script is a ...
Monobehavior Component
Game Object
Material
Window in Workspace
Function
Programming language used in Unity ...
C++
C#
Java
Objective C
PHP
Script is needed, except...
Respond input from player
Instantiating GameObject programmatically
Arrange events in the Gameplay
Installing Unity package
... function is used for updating physics related behaviors.
Update
FixedUpdate
PostUpdate
LateUpdate
... function is used to update Game Logic.
Update
FixedUpdate
LateUpdate
PostUpdate
... is called after the animation update.
Update
LateUpdate
Fixed
PostUpdate
Access modifier which will allow a property value to be edited via the inspector is ...
public
private
protected
static
const
To be able to use the Unity Lifecycle, a class should extend ...
MonoBehavior
System.Collections
UnityEngine
UnityComponent
... is the function to use another component in a script.
GetComponent<>()
FixedUpdate()
FindComponent()
DebugLog
Instantiate()
To schedule a function call after a time delay ... could be used.
Invoke()
Delay()
Call()
Start()
Awake()
