Unity - How To - Make - Platformer - 16 - UI - Score count

#unity #how #to #make #platformer #ui #score #count Where to place score count in the Unity game? You may dock it to the left corner as in the video. Also try to experiment with other screen corners. Thus we make sure that users can see their progress without interrupting the gameplay. To repeat: 0. In the ’Canvas’ create new ’UI’ - ’Text’ gameobject 1. Rename it to ’Score’ 2. Place it to the left screen corner via movement arrows Next lesson preparations: 0. Create ’Collect’ script 1. Copy and paste ’StartMenu’ gameobject 2. Rename it to ’YouWon’ 3. Go to the ’YouWon’ - delete ’Button’ gameobject 4. Create new ’UI’ - ’Text’ gameobject at the ’Button’ place 5. Set ’Text’ gameobject Text property to ’You have collected all melons!’ 6. Open script ’Collect’
Back to Top