mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
14 lines
386 B
C#
14 lines
386 B
C#
using AssetRipper.Assets.Utils;
|
|
using AssetRipper.SourceGenerated.Subclasses.MeshBlendShape;
|
|
|
|
namespace AssetRipper.SourceGenerated.Extensions
|
|
{
|
|
public static class MeshBlendShapeExtensions
|
|
{
|
|
public static bool IsCRCMatch(this IMeshBlendShape blendShape, uint crc)
|
|
{
|
|
return blendShape.Name_R is not null && CrcUtils.VerifyDigestUTF8(blendShape.Name_R.String, crc);
|
|
}
|
|
}
|
|
}
|