- Unity Certified Programmer:Exam Guide
- Philip Walker
- 317字
- 2021-06-18 18:30:10
Managing Scripts and Taking a Mock Test
In this chapter, we are going to continue structuring our game by applying a Singleton design pattern to our GameManager script. This will allow our game to move on to another scene while keeping the script managers functioning and preventing them from being wiped (thereby preserving our data). We will then make a start with other details of our script and observe how information (such as the player's lives) travels through the game's frameworks. If and when the player dies, a life is deducted. If and when the player loses all of their lives, the game over scene will be triggered.
We will be extending our original code and introducing enemy points so that when we hit our enemies with bullets, the enemy will disappear as usual but will also generate points. This scoring mechanism will be handled by a new score manager that we will be creating.
We'll also be adding sound to the player's bullets, which is a simple, straightforward task. This will introduce us to extending and tweaking our audio sources, which we'll proceed with in a later chapter.
Finally, we will be quizzing ourselves with a couple of questions that suit the theme of this book, preparing you for the exam. The questions will cover what we have already learned, and if you have been following along with this book, you'll have a strong chance of passing.
By the end of this chapter, we will have extended our game's framework, added more features to our game, and tested our knowledge with some Unity exam questions.
In this chapter, we will be covering the following topics:
- Adding a Singleton design pattern
- Setting up our ScenesManager script
- Creating lives for the player
- Scoring enemy hits
- Creating sounds for the player's bullets
- Mock test
The next section will introduce the core exam skills that are covered in this chapter.
- Learning Selenium Testing Tools with Python
- 深入淺出Java虛擬機:JVM原理與實戰
- PowerCLI Cookbook
- NumPy Essentials
- C語言程序設計
- 21天學通C++(第6版)
- Visual Studio Code 權威指南
- IBM Cognos TM1 Developer's Certification guide
- Java 從入門到項目實踐(超值版)
- JavaScript編程精解(原書第2版)
- Mastering ASP.NET Core 2.0
- HTML5/CSS3/JavaScript技術大全
- JavaScript高級程序設計(第4版)
- Learning Google Apps Script
- Vue.js從入門到精通