Skip to content

Instantly share code, notes, and snippets.

View DatLycan's full-sized avatar

Sammie DatLycan

View GitHub Profile
@adammyhre
adammyhre / SerializableType.cs
Last active November 17, 2025 01:34
SerializableType and Supporting classes
using System;
using System.Linq;
using UnityEditor;
using UnityEngine;
[Serializable]
public class SerializableType : ISerializationCallbackReceiver {
[SerializeField] string assemblyQualifiedName = string.Empty;
public Type Type { get; private set; }