0
0
Unityframework~10 mins

Unity Hub and installation - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start Unity Hub from the command line.

Unity
unityhub [1]
Drag options to blanks, or click blank then click option'
A--open
B--update
C--install
D--close
Attempts:
3 left
💡 Hint
Common Mistakes
Using --install instead of --open
Using --update which updates Unity Hub
Using --close which closes the app
2fill in blank
medium

Complete the code to install Unity Editor version 2023.1.0 using Unity Hub CLI.

Unity
unityhub install --version [1]
Drag options to blanks, or click blank then click option'
A2020.3.0
B2022.3.5
C2023.1.0
D2021.2.0
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing an older version like 2022.3.5
Using a version not supported by Unity Hub
Typing the version incorrectly
3fill in blank
hard

Fix the error in the command to add a module to Unity Editor installation.

Unity
unityhub install-modules --version 2023.1.0 --module [1]
Drag options to blanks, or click blank then click option'
Awebgl
Bios
Candroid
Dlinux
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'android' when wanting web support
Using 'ios' which is for Apple mobile devices
Using 'linux' which is not a Unity module
4fill in blank
hard

Fill both blanks to create a new Unity project with the name 'MyGame' and template '3D'.

Unity
unityhub create-project --name [1] --template [2]
Drag options to blanks, or click blank then click option'
AMyGame
B2D
C3D
DSampleGame
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'SampleGame' as the project name
Choosing '2D' template instead of '3D'
5fill in blank
hard

Fill all three blanks to list installed Unity versions, filter for version greater than 2022, and sort descending.

Unity
unityhub list --installed | grep [1] | sort [2] --version [3]
Drag options to blanks, or click blank then click option'
A2022
B-r
C>
D<
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<' instead of '>' for filtering
Sorting without reverse option
Filtering with wrong version number