Results 8 comments of Lostii

可以参考 https://github.com/Tencent/xLua/issues/850

> 不如把这个放到FAQ里头?帮忙提交个PR? 已提交

确实,那就是使用者的使用问题吗?因为我也是因为被这个问题困扰,才用现在这个办法解决。

public static List BlackGenericTypeList = new List() { typeof(Span), typeof(ReadOnlySpan), }; private static bool IsBlacklistedGenericType(Type type) { if (!type.IsGenericType) return false; return BlackGenericTypeList.Contains(type.GetGenericTypeDefinition()); } [BlackList] public static Func GenericTypeFilter =...

用其他版本的项目,设置一下 URP 配置就可以正常显示了 ------------------ 原始邮件 ------------------ 发件人: "dreamCirno/Hollow-Knight-Imitation" ***@***.***>; 发送时间: 2023年10月27日(星期五) 晚上10:55 ***@***.***>; ***@***.***>; 主题: [dreamCirno/Hollow-Knight-Imitation] 作者你好 (Issue #2) 作者你好,我的Unity版本是2022.3.5f1c1,我打不开项目,你可以出一个这个版本的么? — Reply to this email directly, view it on GitHub, or unsubscribe. You are...

如果有新增需要排除的泛型类型,可以添加到 BlackGenerateTypeList 内。 可以按照以下写法,根据对应的报错成员信息,实现对应的排除方式。 public static List BlackGenericTypeList = new List() { typeof(Span), typeof(ReadOnlySpan), }; private static bool IsBlacklistedGenericType(Type type) { if (!type.IsGenericType) return false; return BlackGenericTypeList.Contains(type.GetGenericTypeDefinition()); } [BlackList] public...

> @daria663 Can you try the latest release? I used an empty project in Unity 2022.3.17f1c1, but it doesn't work and fails to open the application properly. Below are the...

> @daria663 Can you try the latest release? [Data.zip](https://github.com/user-attachments/files/18052293/Data.zip) Here is globalgamemanagers, it's processed by USSR