Files
Cielonos/Assets/Voxel Labs/Ultimate Thumbnails/Editor/Scripts/Lib/Entities/ToolbarSettings.cs
SoulliesOfficial f26f9fd374 爆更
2026-03-20 12:07:44 -04:00

22 lines
729 B
C#

using System;
using UnityEngine;
using UnityEngine.Serialization;
namespace VoxelLabs.UltimateThumbnails.Lib
{
[Serializable]
public class ToolbarSettings
{
[Tooltip("Shows or hides the entire toolbar.")]
public bool showToolbar = true;
[Tooltip("Shows or hides the toggle button for enabling/disabling Ultimate Thumbnails' custom icons.")]
public bool showPreviewToggle = true;
[Tooltip("Shows or hides the toggle button for enhancing visibility.")]
public bool showVisibilityEnhancerToggle = true;
[Tooltip("Shows or hides the background color picker tool on the toolbar.")]
public bool showBgColorPicker = true;
}
}