Files
textdecalURP/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/CustomPreviewGenerationSettings.cs
Kirill Chikalin 275dc598c7 update libs
2025-02-13 17:48:12 +03:00

19 lines
463 B
C#

using UnityEngine;
namespace AssetStoreTools.Previews.Data
{
internal class CustomPreviewGenerationSettings : PreviewGenerationSettings
{
public override GenerationType GenerationType => GenerationType.Custom;
public int Width;
public int Height;
public int Depth;
public int NativeWidth;
public int NativeHeight;
public Color AudioSampleColor;
public Color AudioBackgroundColor;
}
}