- Learning C# 7 By Developing Games with Unity 2017(Third Edition)
- Micael DaGra?a Greg Lukosek
- 257字
- 2021-07-02 19:59:37
Creating a variable and seeing how it works
Now using a different method, we are going to develop a script that shows us the result on the Unity console. Once again, don't be concerned about the details of how to write this; we are going to explain everything in more detail in future chapters. Just make sure that your script is the same as the script shown in the next screenshot:
- In the Unity Project panel, double-click variableScript. The MonoDevelop window should open automatically on variableScript.cs.
- In MonoDevelop, erase what we have done before and write the lines 7, 12, and 14, as shown in the following screenshot:

- Save the file.
The best way to save your script is by using a shortcut. If you are using a Mac, use command + S, and on Windows use Ctrl + S. We will be saving a new version of the script every time some changes are made to it, so it is a good idea to use a shortcut instead of saving through the File menu.
We have added a few lines to our script. Before we check whether it works or what it actually does, let's go through line 7:
public int myNumber = 9;
In simple words, this line declares a new number type variable named myNumber
and assigns a value of 9 to it. We don't want to worry about theory too much now and want to write more code, right? Agreed, but we do need to remember a few things first.
- INSTANT Mock Testing with PowerMock
- Dependency Injection in .NET Core 2.0
- KnockoutJS Starter
- SQL Server 2016數(shù)據(jù)庫(kù)應(yīng)用與開(kāi)發(fā)
- Python之光:Python編程入門與實(shí)戰(zhàn)
- Building Machine Learning Systems with Python(Second Edition)
- Babylon.js Essentials
- Learning YARN
- RubyMotion iOS Develoment Essentials
- Deep Learning with R Cookbook
- 創(chuàng)意UI:Photoshop玩轉(zhuǎn)APP設(shè)計(jì)
- C語(yǔ)言程序設(shè)計(jì)與應(yīng)用實(shí)驗(yàn)指導(dǎo)書(shū)(第2版)
- PHP Microservices
- MySQL核心技術(shù)與最佳實(shí)踐
- Mastering Unity 2017 Game Development with C#(Second Edition)