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
586 B
33 lines
586 B
using UnityEngine; |
|
using System.Collections; |
|
using Fungus; |
|
|
|
public class MenuRoom : Room |
|
{ |
|
public Room writingRoom; |
|
public Room viewRoom; |
|
public Room animationRoom; |
|
|
|
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(writingRoom); |
|
} |
|
|
|
void MoveToViews() |
|
{ |
|
MoveToRoom(viewRoom); |
|
} |
|
|
|
void MoveToAnimations() |
|
{ |
|
MoveToRoom(animationRoom); |
|
} |
|
}
|
|
|