mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
21 lines
641 B
C#
21 lines
641 B
C#
namespace AssetRipper.Processing.Configuration
|
|
{
|
|
public enum BundledAssetsExportMode
|
|
{
|
|
/// <summary>
|
|
/// Bundled assets are treated the same as assets from other files.
|
|
/// </summary>
|
|
GroupByAssetType,
|
|
/// <summary>
|
|
/// Bundled assets are grouped by their asset bundle name.<br/>
|
|
/// For example: Assets/Asset_Bundles/NameOfAssetBundle/InternalPath1/.../InternalPathN/assetName.extension
|
|
/// </summary>
|
|
GroupByBundleName,
|
|
/// <summary>
|
|
/// Bundled assets are exported without grouping.<br/>
|
|
/// For example: Assets/InternalPath1/.../InternalPathN/bundledAssetName.extension
|
|
/// </summary>
|
|
DirectExport,
|
|
}
|
|
}
|