add file open

This commit is contained in:
2020-08-07 22:40:04 +08:00
parent c1e3f992aa
commit f9bedd2c62
115 changed files with 9835 additions and 1096 deletions

View File

@@ -57,6 +57,8 @@ public static class XluaGenCodeConfig
typeof(Screen),
typeof(PlayerPrefs),
typeof(Shader),
typeof(Texture),
typeof(Texture2D),
//NGUI
typeof(UIRoot),
@@ -204,6 +206,8 @@ public static class XluaGenCodeConfig
typeof(MyGallery),
typeof(NativeCamera),
typeof(MyCamera),
typeof(MyFileOpen),
typeof(TextureFormat),
};
//C#静态调用Lua的配置包括事件的原型仅可以配delegateinterface
@@ -222,6 +226,7 @@ public static class XluaGenCodeConfig
public static List<List<string>> BlackList = new List<List<string>>() {
new List<string>(){ "UnityEngine.WWW", "movie" },
new List<string>(){ "UnityEngine.Texture2D", "alphaIsTransparency" },
new List<string>(){ "UnityEngine.Texture", "imageContentsHash" },
new List<string>(){ "UnityEngine.Security", "GetChainOfTrustValue" },
new List<string>(){ "UnityEngine.CanvasRenderer", "onRequestRebuild" },
new List<string>(){ "UnityEngine.Light", "areaSize" },