As far as I know, the only possibility to use global variables is to define them as static (const in C#). Is there any way to access and change a variable from another script, while both scripts access the same variable?
|
It depends on the situation and your requirements. In most cases there are several ways to go. If both scripts are derived from This does work only if you rely on that objects both objects are active within the same scene or have its life cycle extended by calling DontDestroyOnLoad. If you have plain objects, Have a look at In Unity, how can I pass values from one script to another? for coding examples and Unity3D singleton manager classes for some in depth thoughts about singletons for |
|||
|
|
|
If the values are supported types, are not accessed to often and would benefit from persistance between application runs, PlayerPrefs is sometimes a good place to keep some globals :) |
|||
|
|