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.

101 lines
2.5 KiB

using UnityEditor;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using Fungus;
[CanEditMultipleObjects]
[CustomEditor (typeof(View))]
public class ViewEditor : Editor
{
void OnSceneGUI ()
{
View t = target as View;
if (t.enabled)
{
EditViewBounds();
}
if (GUI.changed)
{
EditorUtility.SetDirty(target);
}
}
void EditViewBounds()
{
View t = target as View;
DrawView(t);
Vector3 pos = t.transform.position;
float viewSize = t.viewSize;
Vector3 newViewPos = Handles.PositionHandle(pos, Quaternion.identity);
t.transform.position = newViewPos;
Vector3[] handles = new Vector3[2];
handles[0] = pos + new Vector3(0, -viewSize, 0);
handles[1] = pos + new Vector3(0, viewSize, 0);
for (int i = 0; i < 2; ++i)
{
Vector3 newPos = Handles.FreeMoveHandle(handles[i],
Quaternion.identity,
HandleUtility.GetHandleSize(pos) * 0.1f,
Vector3.zero,
Handles.CubeCap);
if (newPos != handles[i])
{
t.viewSize = Mathf.Abs(newPos.y - pos.y);
break;
}
}
}
public static void DrawView(View view)
{
Vector3 pos = view.transform.position;
float viewSize = view.viewSize;
float height = viewSize;
float widthA = height * view.primaryAspectRatio;
float widthB = height * view.secondaryAspectRatio;
// Draw left box
{
Vector3[] verts = new Vector3[4];
verts[0] = pos + new Vector3(-widthB, -height, 0);
verts[1] = pos + new Vector3(-widthB, height, 0);
verts[2] = pos + new Vector3(-widthA, height, 0);
verts[3] = pos + new Vector3(-widthA, -height, 0);
Handles.DrawSolidRectangleWithOutline(verts, view.secondaryColor, view.primaryColor );
}
// Draw right box
{
Vector3[] verts = new Vector3[4];
verts[0] = pos + new Vector3(widthA, -height, 0);
verts[1] = pos + new Vector3(widthA, height, 0);
verts[2] = pos + new Vector3(widthB, height, 0);
verts[3] = pos + new Vector3(widthB, -height, 0);
Handles.DrawSolidRectangleWithOutline(verts, view.secondaryColor, view.primaryColor );
}
// Draw center box
{
Vector3[] verts = new Vector3[4];
verts[0] = pos + new Vector3(-widthA, -height, 0);
verts[1] = pos + new Vector3(-widthA, height, 0);
verts[2] = pos + new Vector3(widthA, height, 0);
verts[3] = pos + new Vector3(widthA, -height, 0);
Handles.DrawSolidRectangleWithOutline(verts, new Color(1,1,1,0f), view.primaryColor );
}
}
}