Skip to content

🔊游戏跨端通讯

  • ServerRemoteChannel 是管理客户端服务端通讯的对象,用于对跨端传递信息的操作。
  • 服务端脚本中,可以通过全局对象 remoteChannel 来使用它。

typescript
declare const remoteChannel: ServerRemoteChannel;
declare class ServerRemoteChannel {
    //...
}

方法

监听方法