Unity Learn home
View Tutorial Content
Steps

Scope and Access Modifiers

Tutorial
Beginner
+10 XP
10 Mins
(3614)
Summary
Understanding variable & function scope and accessibility.
This tutorial is included in the Beginner Scripting project.
Previous: Loops
Select your Unity version
Last updated: November 17, 2023
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.x
4.x
Language
English
Also included in

1.Scope and Access Modifiers

Video Player is loading.
Current Time 0:00
Duration 0:00
Loaded: 0%
Stream Type LIVE
Remaining Time 0:00
 
1x

ScopeAndAccessModifiers

using UnityEngine; using System.Collections; public class ScopeAndAccessModifiers : MonoBehaviour { public int alpha = 5; private int beta = 0; private int gamma = 5; private AnotherClass myOtherClass; void Start () { alpha = 29; myOtherClass = new AnotherClass(); myOtherClass.FruitMachine(alpha, myOtherClass.apples); } void Example (int pens, int crayons) { int answer; answer = pens * crayons * alpha; Debug.Log(answer); } void Update () { Debug.Log("Alpha is set to: " + alpha); } }

AnotherClass

using UnityEngine; using System.Collections; public class AnotherClass { public int apples; public int bananas; private int stapler; private int sellotape; public void FruitMachine (int a, int b) { int answer; answer = a + b; Debug.Log("Fruit total: " + answer); } private void OfficeSort (int a, int b) { int answer; answer = a + b; Debug.Log("Office Supplies total: " + answer); } }

Scope and Access Modifiers
Scope and Access Modifiers
General Tutorial Discussion
0
0
1. Scope and Access Modifiers
14
12