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 August 19, 2024 05:32
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; }