mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
17 lines
530 B
C#
17 lines
530 B
C#
using AssetRipper.SourceGenerated.Enums;
|
|
using AssetRipper.SourceGenerated.Subclasses.LightmapBakeMode;
|
|
|
|
namespace AssetRipper.SourceGenerated.Extensions;
|
|
|
|
public static class LightmapBakeModeExtensions
|
|
{
|
|
public static LightmapBakeType GetLightmapBakeType(this ILightmapBakeMode light)
|
|
{
|
|
return (LightmapBakeType)light.LightmapBakeType;
|
|
}
|
|
public static NativeEnums.Global.MixedLightingMode GetMixedLightingMode(this ILightmapBakeMode light)
|
|
{
|
|
return (NativeEnums.Global.MixedLightingMode)light.MixedLightingMode;
|
|
}
|
|
}
|