A record that implements this interface has a custom user interface set.
using EditorStatistics; using UnityEngine.UIElements; public class MyRecord : IRecord, IDetailedRecord { public VisualElement GetDetails() { return new Label("My Details"); } }
Last updated 3 months ago