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.
28 lines
432 B
28 lines
432 B
11 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
using Fungus;
|
||
|
|
||
|
public class MenuRoom : Room
|
||
|
{
|
||
|
public Room writingRoom;
|
||
|
public Room viewRoom;
|
||
|
|
||
|
void OnEnter()
|
||
|
{
|
||
|
AddOption("1. Writing a story with Pages", MoveToWriting);
|
||
|
AddOption("2. Controlling the camera with Views", MoveToViews);
|
||
|
Choose("Choose an example");
|
||
|
}
|
||
|
|
||
|
void MoveToWriting()
|
||
|
{
|
||
|
MoveToRoom(writingRoom);
|
||
|
}
|
||
|
|
||
|
void MoveToViews()
|
||
|
{
|
||
|
MoveToRoom(viewRoom);
|
||
|
}
|
||
|
|
||
|
}
|