Book Image

Building a Game with Unity and Blender

Book Image

Building a Game with Unity and Blender

Overview of this book

In the wake of the indie game development scene, game development tools are no longer luxury items costing up to millions of dollars but are now affordable by smaller teams or even individual developers. Among these cutting-edge applications, Blender and Unity stand out from the crowd as a powerful combination that allows small-to-no budget indie developers or hobbyists alike to develop games that they have always dreamt of creating. Starting from the beginning, this book will cover designing the game concept, constructing the gameplay, creating the characters and environment, implementing game logic and basic artificial intelligence, and finally deploying the game for others to play. By sequentially working through the steps in each chapter, you will quickly master the skills required to develop your dream game from scratch.
Table of Contents (16 chapters)
Building a Game with Unity and Blender
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating rock and wall textures


Now we have created the models for the terrain, walls, and a bunch of rocks. However, without any textures, the players will not be able to tell what they actually resemble. Therefore, texturing is a very important step that helps to enhance the visual identity of a 3D object.

There are different ways to create a texture, depending on the art style you're after. For this game demo, I chose a semi-realistic environment art style, so I will be using photos to create all my environment textures. If you chose a cartoony style instead of realistic, you will need to manually paint your own texture. You can still make use of these photos but only as a reference for painting. Since the terrain, walls, and rocks belong to the same environment, logically, they all belong to the same type of mineral species. Therefore, we just need to create one single texture and reuse it for all the different 3D models. This not only makes the 3D assets look visually identical, but...