x


how to call a variable to other scripts?

I am using javascript codes. I want to know how will I be able to call a variable from a script to another script. for example i want to get the score from the first question to add it to the another question.

more ▼

asked Jan 28 '12 at 03:33 PM

berting01 gravatar image

berting01
51 39 52 58

(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first

ok lets say that your making a script that when something happens health goes down by 1 and you want to access it from another script. You write:

transform.Find("Player").GetComponent("Health").health -= 1;

Replace Player with the name of the game object the script is attached to. Health with the name of the script and health with the variable in the script. Hope this helps

more ▼

answered Feb 24 '12 at 08:27 PM

fireomega gravatar image

fireomega
356 5 7 9

(comments are locked)
10|3000 characters needed characters left

First you must know where is your script, it can be in another object or in the same object where you want to access the extern variable. After you need to get the script object using the command GetComponent( ScriptName ). In the following example I am accessing a function from a script called "CounterManager". So I find the objecct that has it, I find the script inside the object, and finally I access the function. You can access the variable exactly like a function. I do not recommend you to access directly variables from other scripts, since you can change then without perceive, and you become crazy to debug it. Use getX() and setX() functions to manage variables externly.

var counter : GameObject = GameObject.Find( "Counter" );
if ( counter == null )
{
    Debug.Log( "StageGUI can't find the Counter object "); 
}


counterManager = counter.GetComponent( CounterManager );

//Setting values - accessing a function from another script
scoreValue.text = ""+ counterManager.getScore();
more ▼

answered Jan 28 '12 at 03:45 PM

Kaze_Senshi gravatar image

Kaze_Senshi
162 15 17 19

ok thanks. I ll try this one. I have a level which will tally the score after finishing the level

Jan 28 '12 at 04:34 PM berting01
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x5091
x135
x12

asked: Jan 28 '12 at 03:33 PM

Seen: 1316 times

Last Updated: Feb 24 '12 at 08:27 PM