onlyhan

Results 1 issues of onlyhan

环境:unity 2018.4.24f1+slua1.6.2+Nugui3.12.1,net运行时3.5EQ----编译2.0 c#中: class UIEventListenerHelper { ... public static void SetPlayTweenFinish(UIPlayTween uiplaytween, LuaFunction func) { //Debug.log("----lua调用进不来---------------"); EventDelegate.Add(uiplaytween.onFinished, () => func.call(UIPlayTween.current), true); // EventDelegate是Ngui的事件委托类,这里没有导出类;导出也没反应,或许需要特殊写法 } ... } lua这样调用: local UIEventListenerHelper =UIEventListenerHelper...