// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System.Collections.Generic; using UnityEngine; namespace UltimateXR.Editor.Readme { /// /// Readme data drawn using the custom UxrReadmeEditor inspector script. /// //[CreateAssetMenu(fileName = "Readme", menuName = "UltimateXR/Readme", order = 1)] public partial class UxrReadme : ScriptableObject { #region Inspector Properties/Serialized Fields [SerializeField] private Texture2D _headerImage; [SerializeField] private List
_sections = new List
(); [SerializeField] private List _credits = new List(); #endregion #region Public Types & Data /// /// Gets the header image. /// public Texture2D HeaderImage => _headerImage; /// /// Gets the section information. /// public IReadOnlyList
Sections => _sections; /// /// Gets the credits. /// public IReadOnlyList Credits => _credits; #endregion } }