Remove zero width characters

This commit is contained in:
ds5678 2025-02-07 23:26:43 -08:00
parent 481a067bb2
commit 32ed90daf3

View File

@ -52,7 +52,7 @@ public static class MonoBehaviourExtensions
public static bool IsPostProcessProfile(this IMonoBehaviour monoBehaviour)
{
return monoBehaviour.IsType("UnityEngine.Rendering.PostProcessing", "PostProcessProfile");
return monoBehaviour.IsType("UnityEngine.Rendering.PostProcessing", "PostProcessProfile");
}
private static bool IsType(this IMonoBehaviour monoBehaviour, string @namespace, string name)