Skip to content

Instantly share code, notes, and snippets.

@Aryazaky
Aryazaky / UnityEventValidator.cs
Last active November 10, 2023 03:52
UnityEventValidator Class for Unity Events. Used to find <Missing> method references in UnityEvents (as they don't scream error).
using UnityEngine;
using UnityEditor;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;
using Object = UnityEngine.Object;