As Slobdell said, each script will have another instance. This is a way to disable/enable all of the objects...
function DisableObjects() {
var objectsDisabling : GameObject[];
objectsDisabling = GameObject.FindGameObjectsWithTag("ChangeStates"); //"ChangeStates" is the TAG in which the game object you are interacting with has... you can change this to whatever you'd like, it's in the Inspector.
for (var obj : GameObject in objectsDisabling) {
obj.active = false;
}
}
function EnableObjects() {
var objectsEnabling : GameObject[];
objectsEnabling = GameObject.FindGameObjectsWithTag("ChangeStates"); //"ChangeStates" is the TAG in which the game object you are interacting with has... you can change this to whatever you'd like, it's in the Inspector.
for (var obj : GameObject in objectsEnabling) {
obj.active = false;
}
}
As stated in the script, you have to assign the tags correctly on the gameobjects. This is very simple to do, if you don't know how just Google it.
After that, edit this script accordingly (put the right tag in the quotes) and then call on the functions when you want to enable/disable the objects.
↧