Intro to Scripts
Scripts are a way to create custom components that control the properties and interaction with game objects. Unity uses C# plus its own library of code so developers don't have to type everything from scratch.
Default Script
Let's take a look at what is in a default script:
using UnityEngine - this is one of the libraries that hold code making accessing game objects and components easier. Do not remove this!
public class - tells the program this script is accessible by other scrips and the code within this .cs file is a "class" ... think of it as saying this script is a full component that can be added and removed from game objects.
Example2 - the name of the script. This shows as "Example2.cs" in the Assets folder and "Example 2" in the Inspector.
: MonoBehaviour - built-in parent class that tells the program how to handle the component. All the code for the component should exist inside the brackets that follow.
Start() Function
Unity provides a helpful comment here. The code within the curly brackets after Start() runs only once and on the first frame.
This is similar to the setup() function s found in some other programming languages.
Update() Function
Just as the comment says, the code within the curly brackets after Update() will run once per frame - for many computers, that could mean 60 times a second!
This is similar to loop() or draw() in some other programming languages.
Adding Custom Code
You can store values, messages, and objects into variables, then control and update them through code. Public variables will appear in the Inspector window when the script is added to a game object.
The biggest thing to remember when accessing parts of your game and game objects is that it starts with the biggest element and gets smaller with dots in between.
Examples:
Game Object > Component > Property > Value/Function
Please see the following sections for more information about the elements used in coding:
Last updated