// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors.Editors; using FlaxEditor.Scripting; using FlaxEngine; namespace FlaxEditor.CustomEditors.Dedicated { /// /// Custom editor for . /// /// [CustomEditor(typeof(FontReference)), DefaultEditor] public class FontReferenceEditor : GenericEditor { /// protected override List GetItemsForType(ScriptType type) { // Show properties return GetItemsForType(type, true, false); } } }