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.

33 lines
581 B

using UnityEngine;
using System.Collections;
using Fungus;
public class MenusRoom : Room
{
public Room pagesRoom;
public Room viewsRoom;
public Room spritesRoom;
void OnEnter()
{
AddOption("1. Writing a story with Pages", MoveToWriting);
AddOption("2. Controlling the camera with Views", MoveToViews);
AddOption("3. Using Sprites and Animations", MoveToAnimations);
Choose("Choose an example");
}
void MoveToWriting()
{
MoveToRoom(pagesRoom);
}
void MoveToViews()
{
MoveToRoom(viewsRoom);
}
void MoveToAnimations()
{
MoveToRoom(spritesRoom);
}
}