WINGSIGOD

Results 1 issues of WINGSIGOD

**描述问题bug** 游戏里面有一个想调用一个更换天气的rpc协议 如果在poco.agent.rpc.call前使用了poco.click() 则只会更换天气特效(例如飘雪,下雨) 不会更换天气场景(例如晴天,夜晚) ``` poco代码: poco.agent.rpc.call("weather", 18) pocomanager.cs提供的接口 [RPC] private object weather(List param) { int id=Int32.Parse(param[0].ToString()); LuaState luaState = LuaClient.GetMainState (); var func = luaState.GetFunction("WeatherController.setReportId"); var rpc =...