Hello, So I have a pretty straight foreword question. How can I save my speakerState from one scene to another? As of now, when I play one scene and mute the speaker, then go to my next scene the speaker in its normal speaker state. I know why it goes back, thanks not the problem, Im just trying to figure out how to save if the mute is pressed, then mute needs to be set in the next scene. I am just unsure of the best way to go about doing so.
enum speakerStates
{
speaker = 0,
speakerMute = 1,
reset = 2,
}
var speakerState : speakerStates = speakerStates.speaker;
var speakerMat : Material;
var speakerMuteMat : Material;
var soundVoleume : int;
function Update ()
{
AudioListener.volume = soundVoleume;
switch(speakerState)
{
case speakerStates.speaker:
renderer.material = speakerMat;
soundVoleume = 6;
break;
case speakerStates.speakerMute:
renderer.material = speakerMuteMat;
soundVoleume = 0;
break;
case speakerStates.reset:
speakerState = speakerStates.speaker;
break;
}
}
function OnMouseDown()
{
speakerState += 1;
}