SpriteKit 或 SceneKit 是否支持多人游戏?

Does SpriteKit or SceneKit support multiplayer?

我想用 swift 使用 spriteKit 或 sceneKit 制作多人游戏 这可能吗?如果不是,什么时候会,如果是,你能给我一个很好的教程吗? 提前致谢!

是的,这是可能的。

但是多人游戏并不依赖于像 SpriteKit 或 SceneKit 这样的框架。您可以在游戏中实现多用户功能,就像在聊天等其他事情中那样。

Apple 提供的简单多用户框架要么是用于本地多人游戏的 MultipeerConnectivity 框架,要么是针对游戏的 GameKit 互联网多人游戏框架。

有很多教程。对于 GameKit,您可以查看 raywenderlich.com. For the MultipeerConnectivity-Framework I'd recommend you to read the documentation.

上的教程