[2Ed] Chapter 34: Prototype 6: Word Game
In this chapter, you learn how to create a simple word game. This game uses several concepts that you have already learned, and it introduces the concept of coroutines, methods that can yield during execution to allow the processor to handle other methods.
By the end of this chapter, you’ll have a simple word game that you can expand yourself.
Unity 2018.2.2 – Camera.main Bug
- In Unity 2018.2.2, sometimes when creating a Camera, the tag of the Camera is set to “Untagged” instead of “MainCamera”. As a result, any references to Camera.main will cause Null Reference Exceptions.
- To remedy this, all you need to do is set the tag of the Main Camera to MainCamera.