Files
Emberwild/Assets/Plugins/Voxel Labs/Ultimate Preview/Editor/Scripts/CustomPreview/UltimateFontAssetPreview.cs
T
2026-06-22 16:18:34 +02:00

18 lines
429 B
C#

#if UNITY_6000_0_OR_NEWER
using System;
using UnityEditor;
using UnityEngine.TextCore.Text;
using VoxelLabs.UltimatePreview.Core;
namespace VoxelLabs.UltimatePreview.CustomPreview
{
[CustomPreview(typeof(FontAsset))]
internal class UltimateFontAssetPreview : UltimateFontPreviewBase
{
protected override Type GetOriginalEditorType()
{
return typeof(FontAsset);
}
}
}
#endif