Hey folks! There’s a problem with this script on the line I’ve indicated.
Just a simple coding error–with a really long, brute force script! I couldn’t figure out how to put the scripts in an array, so I’m just doing this the hard way. But that’s not the problem. The problem is that it’s telling me there’s a NullReferenceException, and that the Object Reference is not set to an instance of the object, and pointing to the first time I attempt to reference one of my scripts’ Switch functions. All the scripts are the same, actually…just on eleven different objects. Print statements are telling me that the script that’s giving me the error is Null…so I guess I’m not referencing any of this correctly?
I will tell tales of your heroism to all my friends in my design studio, if you can help me figure this one out. Thanks so much for your time. I feel stuck, right now…
Simon.
var maincamera:Camera;
var eyeofbeholder : GameObject;
var destroyer;
destroyer = eyeofbeholder.GetComponent("Character Destroyer");
var wind_audio_object: GameObject;
var backbeat_audio_object: GameObject;
var banjo_audio_object: GameObject;
var bass_audio_object: GameObject;
var melody_audio_object: GameObject;
var kick_and_hh_audio_object: GameObject;
var tamborine_audio_object: GameObject;
var snare_and_funk_audio_object: GameObject;
var disco_hh_audio_object: GameObject;
var mooooo_audio_object: GameObject;
var boingy_audio_object: GameObject;
var aloha_audio_object: GameObject;
var wind_audio_script;
var backbeat_audio_script;
var banjo_audio_script;
var bass_audio_script;
var melody_audio_script;
var kick_and_hh_audio_script;
var tamborine_audio_script;
var snare_and_funk_audio_script;
var disco_hh_audio_script;
var mooooo_audio_script;
var boingy_audio_script;
var aloha_audio_script;
wind_audio_script = eyeofbeholder.GetComponent("Audio Switch");
backbeat_audio_script = eyeofbeholder.GetComponent("Audio Switch");
banjo_audio_script = eyeofbeholder.GetComponent("Audio Switch");
bass_audio_script = eyeofbeholder.GetComponent("Audio Switch");
melody_audio_script = eyeofbeholder.GetComponent("Audio Switch");
kick_and_hh_audio_script = eyeofbeholder.GetComponent("Audio Switch");
tamborine_audio_script = eyeofbeholder.GetComponent("Audio Switch");
snare_and_funk_audio_script = eyeofbeholder.GetComponent("Audio Switch");
disco_hh_audio_script = eyeofbeholder.GetComponent("Audio Switch");
mooooo_audio_script = eyeofbeholder.GetComponent("Audio Switch");
boingy_audio_script = eyeofbeholder.GetComponent("Audio Switch");
aloha_audio_script = eyeofbeholder.GetComponent("Audio Switch");
var flower:Transform;
var bee:Transform;
var cloud:Transform;
var butterfly:Transform;
var sign:Transform;
var mesa:Transform;
var mushroom:Transform;
var tree:Transform;
var cow:Transform;
var rock:Transform;
var rainbow:Transform;
var music_level = 0;
var loop_length = 18;
var number_of_objects = 0;
var mybeat;
var timecount = 0.00;
var currentbeat = 0.00;
function Start()
{
StartLoop();
}
function StartLoop()
{
number_of_objects = destroyer.combocount;
if(number_of_objects >= 1)
{
Invoke("Flower", .75);
}
if(number_of_objects >= 2)
{
Invoke("Bee", .75);
}
if(number_of_objects >= 3)
{
Invoke("Cloud", .75);
}
if(number_of_objects >= 4)
{
Invoke("Butterfly", .75);
}
if(number_of_objects >= 5)
{
Invoke("Sign", .75);
}
if(number_of_objects >= 6)
{
Invoke("Mesa", .75);
}
if(number_of_objects >= 7)
{
Invoke("Mushroom", .75);
}
if(number_of_objects >= 8)
{
Invoke("Tree", .75);
}
if(number_of_objects >= 9)
{
Invoke("Cow", .75);
}
if(number_of_objects >= 10)
{
Invoke("Rock", .75);
}
if(number_of_objects >= 11)
{
Invoke("Rainbow", .75);
}
if(music_level != number_of_objects || number_of_objects == 0)
{
switch(music_level)
{
case 0:
------------------> ERROR POINTS TO NEXT LINE <----------------
wind_audio_script.Switch();
` break; case 1: backbeat_audio_script.Switch(); break; case 2: banjo_audio_script.Switch(); break; case 3: bass_audio_script.Switch(); break; case 4: melody_audio_script.Switch(); break; case 5: kick_and_hh_audio_script.Switch(); break; case 6: tamborine_audio_script.Switch(); break; case 7: snare_and_funk_audio_script.Switch(); break; case 8: disco_hh_audio_script.Switch(); break; case 9: mooooo_audio_script.Switch(); break; case 10: boingy_audio_script.Switch(); break; case 11: aloha_audio_script.Switch(); break; } music_level = number_of_objects; switch(music_level) { case 0: wind_audio_script.Switch(); break; case 1: backbeat_audio_script.Switch(); break; case 2: banjo_audio_script.Switch(); break; case 3: bass_audio_script.Switch(); break; case 4: melody_audio_script.Switch(); break; case 5: kick_and_hh_audio_script.Switch(); break; case 6: tamborine_audio_script.Switch(); break; case 7: snare_and_funk_audio_script.Switch(); break; case 8: disco_hh_audio_script.Switch(); break; case 9: mooooo_audio_script.Switch(); break; case 10: boingy_audio_script.Switch(); break; case 11: aloha_audio_script.Switch(); break; } } Invoke("StartLoop",loop_length); } function Flower() { mybeat = Instantiate (flower, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Flower"; } function Bee() { mybeat = Instantiate (bee, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Bee"; } function Cloud() { mybeat = Instantiate (cloud, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Cloud"; } function Butterfly() { mybeat = Instantiate (butterfly, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Butterfly"; } function Sign() { mybeat = Instantiate (sign, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Sign"; } function Mesa() { mybeat = Instantiate (mesa, Vector3(-20, 3, transform.position.z+maincamera.farClipPlane-.5), Quaternion.identity); mybeat.tag = "Mesa"; } function Mushroom() { mybeat = Instantiate (mushroom, Vector3(-10, 1.7, transform.position.z+maincamera.farClipPlane), Quaternion.identity); mybeat.tag = "Mushroom"; } function Tree() { mybeat = Instantiate (tree, Vector3(-10, 1.7, transform.position.z+maincamera.farClipPlane), Quaternion.identity); mybeat.tag = "Tree"; } function Cow() { mybeat = Instantiate (cow, Vector3(-10, 1.7, transform.position.z+maincamera.farClipPlane), Quaternion.identity); mybeat.tag = "Cow"; } function Rock() { mybeat = Instantiate (rock, Vector3(10, 1.7, transform.position.z+maincamera.farClipPlane+1), Quaternion.identity); mybeat.tag = "Rock"; } function Rainbow() { mybeat = Instantiate (rainbow, Vector3(10, 1.7, transform.position.z+maincamera.farClipPlane+1), Quaternion.identity); mybeat.tag = "Rainbow"; }`