「Unity/grpc/Core」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→unityサンプルのDL) |
(→unityサンプルのDL) |
||
行34: | 行34: | ||
examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある | examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある | ||
− | examples/csharp/HelloworldUnity/ | + | #examples/csharp/HelloworldUnity/Assets以下のScenesとScriptsを自分のプロジェクトのAssets以下に移す |
+ | #grpc_unity_package.zipを解凍して、Assets/Plugins以下に移す | ||
==参考== | ==参考== | ||
https://took.jp/unity-grpc-core/ | https://took.jp/unity-grpc-core/ |
2023年8月24日 (木) 05:46時点における版
grpc.coreとは
- gRPCの古いプラグイン
- 2023/5までサポート
- Mac M1は動かない。Mac Intelは動く。
準備
protobufインストール
protobufは、データシリアライズ用
macの場合
brew install protobuf
grpcインストール
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28 go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2
$ vim ~/.bash_profile export PATH="$PATH:$(go env GOPATH)/bin"
インストール確認
$ protoc-gen-go --version $ protoc-gen-go-grpc --version
unity側grpc準備
から以下をDL
- grpc_unity_package.zip
- Grpc.Tools.zip
unityサンプルのDL
https://github.com/grpc/grpc/tree/67538122780f8a081c774b66884289335c290cbe
examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある
- examples/csharp/HelloworldUnity/Assets以下のScenesとScriptsを自分のプロジェクトのAssets以下に移す
- grpc_unity_package.zipを解凍して、Assets/Plugins以下に移す