能否从 Lua 向 Unity3d 传输 x、y、z 数据?

我是用 Lua 脚本实现的仿真。 我想将数据(x、y、z 位置信息)发送给 Unity3D。 我将使用 UDP 通信。 Unity3D = C#,Lua 是不同的语言。 是否可能从 Lua 向 Unity3d 传输 x、y、z 数据?

点赞
用户3785314
用户3785314

是的。只要使用标准协议,网络应用程序始终可以互相通信。UDP 和 TCP 都是标准化的,因此无论使用什么编程语言,它们都可以相互通信。

Yes. Network applications will always be able communicate with each other as long as they use standard protocol. UDP and TCP are both standardized, so no matter what programming language you use, they can both talk to each other.
2016-05-27 12:18:27