forked from AssetRipper/AssetRipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainAssetProcessor.cs
49 lines (48 loc) · 1.4 KB
/
MainAssetProcessor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using AssetRipper.Assets;
using AssetRipper.Import.Logging;
using AssetRipper.SourceGenerated.Classes.ClassID_128;
using AssetRipper.SourceGenerated.Classes.ClassID_156;
using AssetRipper.SourceGenerated.Classes.ClassID_21;
using AssetRipper.SourceGenerated.Classes.ClassID_27;
using AssetRipper.SourceGenerated.Classes.ClassID_28;
using AssetRipper.SourceGenerated.Extensions;
namespace AssetRipper.Processing
{
public class MainAssetProcessor : IAssetProcessor
{
public void Process(GameData gameData)
{
Logger.Info(LogCategory.Processing, "Main Asset Pairing");
foreach (IUnityObjectBase asset in gameData.GameBundle.FetchAssets())
{
switch (asset)
{
case IFont font:
{
font.MainAsset = font;
if (font.TryGetFontMaterial(out IMaterial? fontMaterial))
{
fontMaterial.MainAsset = font;
}
if (font.TryGetFontTexture(out ITexture? fontTexture))
{
fontTexture.MainAsset = font;
}
}
break;
case ITerrainData terrainData:
{
terrainData.MainAsset = terrainData;
foreach (ITexture2D alphaTexture in terrainData.GetSplatAlphaTextures())
{
//Sometimes TerrainData can be duplicated, but retain the same alpha textures.
//https://github.com/AssetRipper/AssetRipper/issues/1356
alphaTexture.MainAsset ??= terrainData;
}
}
break;
}
}
}
}
}