Skip to Main Content
Unity 2018 By Example - Second Edition
book

Unity 2018 By Example - Second Edition

by Alan Thorn
July 2018
Beginner content levelBeginner
484 pages
9h 36m
English
Packt Publishing
Content preview from Unity 2018 By Example - Second Edition

Working with scores – scripting with text

To display a score in the GUI, we'll first need score functionality, that is, code to create a score system. Essentially, the score functionality will be added to a general, overarching GameController class, responsible for all game-wide logic and features. The code for GameController and its score feature set is included in Code Sample 4.4, as follows. This file should be added to the Scripts folder of the project:

using UnityEngine;
using System.Collections;
using UnityEngine.UI; //------------------------------ public class GameController : MonoBehaviour { //Game score public static int Score; //Prefix public string ScorePrefix = string.Empty;ic //Score text object public Text ScoreText = null; //Game ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Unity 2020 By Example - Third Edition

Unity 2020 By Example - Third Edition

Robert Wells
Unity 2018 Cookbook - Third Edition

Unity 2018 Cookbook - Third Edition

Matt Smith, Chico Queiroz, Jate Wittayabundit

Publisher Resources

ISBN: 9781788398701Supplemental Content