- Procedural Content Generation for Unity Game Development
- Ryan Watkins
- 296字
- 2021-07-16 09:42:10
Application of PCG
Where we can apply PCG is an interesting question, as it can theoretically be applied to every aspect of a game. Here is a brief list of examples of where it has already been used:
- Level layout—Blizzard Entertainment's Diablo series
- Unique item creation—Gearbox Software's Borderlands series
- AI behavior—Hisanori Hiraoka, Daisuke Watanabe, and Kyohei Fujita's dreeps
- Texture generation—Farbrausch's .kkrieger
- Model Generation—Speed Tree (which can be used with Unity)
- Storyline—Bethesda's The Elder Scrolls 5: Skyrim Radiant Quests system
- Music—Ed Key and David Kanaga's Proteus
This list encapsulates some of the more popular uses of PCG. As a game lover, you are encouraged to research each of these games as they are wonderful examples of PCG. We will cover most of these topics in this book, but this is by no means an exhaustive list of how PCG can be used in game development.
So now you know what PCG is but what about implementing it? To put it plainly, PCG is just the idea that we can automatically generate game content. We will develop different algorithms and use certain programming practices to apply the idea of PCG to our video games.
One of the more popular ways to implement PCG utilizes randomness or random events to produce content. It is popular because it is easier to let randomness determine certain events over scripting every outcome. For example, we might let randomness determine which pieces are used to generate the weapons seen previously in Gearbox's Borderlands. We might use a pseudo random number generator and bind each piece of the weapon to a randomly determined number. Of course, keep in mind that this isn't truly random as we will soon discuss further.
- Django+Vue.js商城項目實戰
- Hands-On Image Processing with Python
- 基于Java技術的Web應用開發
- Wireshark Network Security
- 新手學Visual C# 2008程序設計
- HTML5+CSS3+JavaScript Web開發案例教程(在線實訓版)
- 小程序,巧運營:微信小程序運營招式大全
- Mastering RStudio:Develop,Communicate,and Collaborate with R
- 算法訓練營:提高篇(全彩版)
- C語言程序設計同步訓練與上機指導(第三版)
- C語言課程設計
- SQL 經典實例
- .NET 4.0面向對象編程漫談:應用篇
- 深度學習程序設計實戰
- 深入理解Java虛擬機:JVM高級特性與最佳實踐