Installed Surge, fixed compile errors, moved a bunch of external stuff into folder

This commit is contained in:
2025-09-10 10:53:04 +02:00
parent a3649c65b0
commit 52bd7ef585
433 changed files with 10589 additions and 4 deletions

View File

@@ -0,0 +1,29 @@
/// <summary>
/// SURGE FRAMEWORK
/// Author: Bob Berkebile
/// Email: bobb@pixelplacement.com
///
/// A set of globally accessible Editor utilities.
///
/// </summary>
#if UNITY_EDITOR
using UnityEngine;
using UnityEditor;
namespace Pixelplacement
{
public class EditorUtilities : Editor
{
//Public Methods:
/// <summary>
/// Global error for the Editor.
/// </summary>
/// <param name="errorMessage">Error message.</param>
public static void Error (string errorMessage)
{
EditorUtility.DisplayDialog ("Framework Error", errorMessage, "OK");
}
}
}
#endif