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

10 lines
324 B
C#

namespace AssetStoreTools.Previews.Data
{
internal class NativePreviewGenerationSettings : PreviewGenerationSettings
{
public override GenerationType GenerationType => GenerationType.Native;
public bool WaitForPreviews;
public bool ChunkedPreviewLoading;
public int ChunkSize;
}
}