- 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.
- Scratch 3.0少兒編程與邏輯思維訓練
- Learning Firefox OS Application Development
- Java Web開發技術教程
- Bootstrap 4:Responsive Web Design
- AutoCAD VBA參數化繪圖程序開發與實戰編碼
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Python面向對象編程:構建游戲和GUI
- C語言程序設計
- 零基礎學Kotlin之Android項目開發實戰
- .NET Standard 2.0 Cookbook
- Extending Unity with Editor Scripting
- Laravel Design Patterns and Best Practices
- Unity 5 Game Optimization
- MySQL數據庫教程(視頻指導版)
- C語言程序設計