An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.1 KiB

using UnityEngine;
using System.Collections;
namespace Fungus.Example
{
public class AudioRoom : Room
{
public Room menuRoom;
public AudioClip musicClip;
public AudioClip effectClip;
void OnEnter()
{
if (HasValue("music"))
{
AddOption("Stop the music", StopGameMusic);
if (HasValue("quiet") == false)
{
AddOption("Shhh! Make it quieter", MakeQuiet);
}
}
else
{
AddOption("Play some music", StartGameMusic);
}
AddOption("Play a sound effect", PlaySound);
AddOption("Back to menu", MainMenu);
if (IsFirstVisit())
{
Choose("We are the music makers, and we are the dreamers of dreams.");
}
else
{
Choose();
}
}
void StartGameMusic()
{
PlayMusic(musicClip);
SetMusicVolume(1f);
SetValue("music");
Call(OnEnter);
}
void StopGameMusic()
{
StopMusic();
ClearValue("music");
ClearValue("quiet");
Call(OnEnter);
}
void PlaySound()
{
PlaySound(effectClip, 1f);
Call(OnEnter);
}
void MakeQuiet()
{
SetValue("quiet");
SetMusicVolume(0.25f, 1f);
Call(OnEnter);
}
void MainMenu()
{
MoveToRoom(menuRoom);
}
}
}