Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Unity, how can I pass values from one script to another?

Tags:

c#

unity3d

In Unity, I want one object to have a falling speed variable that all the other objects can access. For various reasons, I can't use the inbuilt gravity for what I'm trying to do.

How can I access a variable in one object repeatedly, so that when it updates I get the updated variable, from another object?

like image 372
Dakeyras Avatar asked Dec 15 '12 11:12

Dakeyras


People also ask

How do you access variables from other scripts in unity?

A static variable in Unity is a variable that is shared by all instances of a class. To mark a variable as static in Unity, simply add the static keyword when declaring it. Then, to access the variable, instead of referring to an instance of the class, you can access it via the class itself.


2 Answers

There are several ways to achieve this.

If you want the speed variable controlled by a component which is attached to a GameObject MyObject

public class SpeedController : MonoBehaviour     public float speed;     // maybe you want restrict this to have read access, then you should use a property instead 

In other classes you can do:

GameObject go = GameObject.Find ("MyObject"); SpeedController speedController = go.GetComponent <SpeedController> (); float courrentSpeed = speedController.speed; 

Take care that there is one object named MyObject only otherwise things get messed up.

Alternatively you can define a SpeedController member in every class that needs access to speed and set a reference via drag and drop in Unity editor. You save the lookup then but of course this is pretty inconvenient if needed in many classes.


Another way is to create a singleton which holds the speed variable and have:

public class MyGlobalSpeedController {     private static MyGlobalSpeedController instance = null;     public static MyGlobalSpeedController SharedInstance {         get {             if (instance == null) {                 instance = new MyGlobalSpeedController ();             }             return instance;         }     }     public float speed; }    

So all classes can access this:

float currentSpeed = MyGlobalSpeedController.SharedInstance.speed 

As Jan Dvorak stated in comments section:

public class SpeedController : MonoBehaviour     public static float speed; 

[Update] Thanks to Jerdak. Yes Component.SendMessage should be definitely on the list:

go.SendMessage("GetFallingSpeed"); 

Again you need to have a reference to go like described in the first solution.

There are even more solutions to this problem. If you are thinking of game objects that are active in all scenes, you should have a look at Unity singleton manager classes

like image 105
Kay Avatar answered Sep 23 '22 20:09

Kay


If I were you I would just make this speed variable "static public" so you can access it from anywhere. You should always avoid "find.anything" etc functions, they are quite slow. There is no reason for you to look for something that you exactly know where it is.

like image 41
Furjoza Avatar answered Sep 24 '22 20:09

Furjoza