内容简介:手机运行 Unity Grpc(金庆的专栏 2018.8)
手机运行 Unity Grpc
(金庆的专栏 2018.8)
- 安装 Unit2018, 支持 .NET 4.x
-
创建一个项目,开启 .NET 4.x
Edit->Project Settings->Player->Other Settings
->Configuration->Script Runtime Version->.Net 4.x Equivalent -
从 https://packages.grpc.io/
的 Daily Builds 下载最新的
grpc-protoc_windows_x86-VERSION.zip
grpc_unity_package.VERSION.zip -
grpc_unity_package.VERSION.zip
解压到 Assets 目录下 - 从 github grpc 复制 examples/protos/helloworld.proto 为 Assets/protos/helloworld.proto
-
创建 Assets/Scripts/Greeter/, 并在该目录下运行
protoc.exe -I../../../protos --csharp_out=. ../../../protos/helloworld.proto --grpc_out=. --plugin=protoc-gen-grpc=grpc_csharp_plugin.exe
- 需要先从 grpc-protoc_windows_x86-VERSION.zip 解压 protoc.exe,grpc_csharp_plugin.exe
- 生成 Helloworld.cs HelloworldGrpc.cs
-
客户端代码
-
创建Channel连接服务器
channel = new Channel("127.0.0.1:50051", ChannelCredentials.Insecure);
-
创建客户端并发出请求
var client = new Greeter.GreeterClient(channel); HelloReply reply = client.SayHello(new HelloRequest { Name = "Jin Qing" });
-
创建Channel连接服务器
- 完整代码见: https://gitee.com/jinq0123/unity-grpc-sample
- 最后打包安装到手机测试通过
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 手机端运行卷积神经网络的一次实践 -- 基于 TensorFlow 和 OpenCV 实现文档检测功能
- 手机屏幕尺寸测试――手机的实际显示页面的宽度
- 区块链时代的手机黑手:木马肆虐,电脑、手机秒变矿机!
- 开源手机WiPhone即将众筹,你甚至还能用手机“开车”
- 旧手机的新玩法:postmarketOS 已适配上百款安卓手机
- 手机抓包
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Speed Up Your Site
Andrew B. King / New Riders Press / 2003-01-14 / USD 39.99
There's a time bomb on the web: user patience. It starts ticking each time someone opens one of your pages. You only have a few seconds to get compelling content onto the screen. Fail, and you can kis......一起来看看 《Speed Up Your Site》 这本书的介绍吧!