An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.

16 lines
255 B

using UnityEditor;
using UnityEngine;
using System.Collections;
namespace Fungus
{
[CustomEditor (typeof(Room), true)]
[CanEditMultipleObjects]
public class RoomEditor : Editor
{
private void OnSceneGUI()
{
GameEditor.DrawRoomNames();
}
}
}