@ -4,6 +4,9 @@ using UnityEditor;
using System;
using System.Reflection;
namespace Fungus
{
/**
* Utility functions for drawing custom UI in the editor
*/
@ -38,3 +41,5 @@ public static class CustomGUI
GUILayout.Box(blackTex,separatorStyle);
}
@ -3,6 +3,9 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
public static class EditorExtensions
/// <summary>
@ -60,3 +63,5 @@ public static class EditorExtensions
return FindDerivedTypesFromAssembly(System.Reflection.Assembly.GetAssembly(baseType), baseType, classOnly);
@ -2,6 +2,9 @@
using UnityEngine;
// Helper Rect extension methods
public static class RectExtensions
@ -77,3 +80,5 @@ public class EditorZoomArea
GUI.BeginGroup(new Rect(0.0f, kEditorWindowTabHeight, Screen.width, Screen.height));
@ -2,6 +2,9 @@ using UnityEngine;
using System.Collections;
public class GLDraw
/*
@ -286,3 +289,5 @@ public class GLDraw
return rt * rt * rt * s + 3 * rt * rtt * st + 3 * rtt * t * et + t * t * t * e;