abcjjy

Results 19 issues of abcjjy

PlayServiceResolver是Google的一个unity原生插件管理工具,集成Admob会默认安装它。安装以后,tolua的生成绑定会报出异常。原因是PlayServiceResolver添加了自己的AssemblyResolve事件,在这个事件里出现assembly找不到的情况。而tolua在ToLuaExports.ProcessExtends里用到了GetType,在绑定时有些extends要查询的类名里有“,”,比如ToLua_System_Dictionary,GetType就把它当有assembly name的类名,触发AssemblyResolve事件,然后PlayServiceResolver就出异常了。 解决办法很简单只要把https://github.com/topameng/tolua/blob/21143b13c2ed1dcdaa36dd2c497c20eaa7a8ec94/Assets/ToLua/Editor/ToLuaExport.cs#L4272 修改为 `extendName = "ToLua_" + className.Replace(".", "_").Replace(",", "_");` 去掉会产生歧义的逗号就好了。

Expression SO can inherit variables and make SOA more powerful and flexiable. For example ```c# class ComparisonExpression : BoolVariable { public BaseVariable var1; public CompareOperator op; public BaseVariable var2; public...

Xml library is dead and can't compile on Mojave. Please remove it. Installing https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lua-requests-1.2-0.src.rock... Using https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lua-requests-1.2-0.src.rock... switching to 'build' mode Missing dependencies for lua-requests: xml luasec >= 0.5.1 lbase64 md5...

luajit在模拟器上运行不了,是汇编代码里的问题。只能用lua5.1.5。改了一下编译脚本,可以在编译时通过参数选择是用lua还是luajit。但是对模拟器只用lua5.1.5。已经分别在模拟器和真机测试过。 模拟器虽然慢,但是有时候还是方便一点的。

Command history is a nice feature. However, it is restricted to navigate with arrow keys, which is quite inconvenient on a mobile device. I've tried external keyboard connected to iPhone...

enhancement

I'm trying to make it work with GZipStream, which requires CanRead be true while reading. I looked through the code. m_cryptDataStream is closed in Read() when reading to the end....

I like the visualization and tooltips of this app. However, it the performance is not very well. On my mac book pro (chrome), it takes 100% cpu time. After turn...

bug

### Godot version v4.1.1.stable.official [bd6af8e0e] ### godot-cpp version 4.1.1 1009da4 ### System information macOS 13.4.0 - Vulkan (Mobile) - dedicated AMD Radeon Pro 560X - Intel(R) Core(TM) i7-8850H CPU @...

It would be nice to redirect to a custom url

It seems that IE8 cannot modify DOM while loading. A exception is thrown while calling init_jQueryTagit. I came up a simple solution: wrap the body of init_jQueryTagit into $(function(){...}). It...