更新时间:2021-07-09 20:03:55
封面
版权信息
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Chapter 1. Discovering Your Hidden Scripting Skills and Getting Your Environment Ready
Prerequisite knowledge to use this book
Dealing with scriptphobia
Downloading Unity
Teaching behavior to GameObjects
C# documentation – where to find it? Do I need it at all?
Working with C# script files
Creating a C# script file
Introducing the MonoDevelop code editor
Instance? What is it?
Summary
Chapter 2. Introducing the Building Blocks for Unity Scripts
Understanding what a variable is and what it does
What is a method?
Introducing the class
The Start() Update() and Awake() methods and the execution order
Components that communicate using dot syntax
Making decisions in code
Paper and pencil are powerful tools
Chapter 3. Getting into the Details of Variables
Writing C# statements properly
Understanding component properties in Unity's Inspector
Changing a property's value in the Inspector panel
Private variables
Naming your variables properly
Beginning variable names with lowercase
Using multiword variable names
Declaring a variable and its type
Assigning values while declaring a variable
Where you declare a variable is important
Variable scope – determining where a variable can be used
Chapter 4. Getting into the Details of Methods
Using methods in a script
Naming methods properly
Defining a method the right way
Understanding parentheses – why are they there?
Specifying a method's parameters
Returning a value from a method
Chapter 5. Lists Arrays and Dictionaries
What is an array?
Storing items in the List
List<T> versus arrays
Retrieving the data from the Array or List<T>
ArrayList
Dictionaries
Chapter 6. Loops
Introduction to loops
The foreach loop
The for loop
The while loop
while versus for loops
Loops in statements
Modulo
Searching for data inside an array
Breaking the loop
Chapter 7. Object a Container with Variables and Methods
Working with objects is a class act
Instantiating an object
Bored yet?
Using methods with objects
Custom constructors
Overloading
Chapter 8. Let's Make a Game! – From Idea to Development
Your first game – avoiding the trap of the never-ending concept
The idea
Breaking a complex idea into smaller parts
Jake on the mysterious planet – the feature list
Target platform and resolution
Target screen resolution
Chapter 9. Starting Your First Game
Setting up a new Unity project for our game
Preparing the player prefab
PlayerController
User input
Animator
Code
Chapter 10. Writing GameManager
Gameplay loops
Singleton class
Starting the game
Setting up input keys
Using triggers
Restarting the game
Setting up the player starting position
Code in this chapter