facebook twitter hatena line email

「Unity/grpc/Core」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(unityサンプルのDL)
(unityサンプルのDL)
行34: 行34:
 
examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある
 
examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある
  
examples/csharp/HelloworldUnity/Assets以下のScenesとScriptsを自分のプロジェクトのAssets以下にコピー
+
#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準備

https://packages.grpc.io/archive/2022/04/67538122780f8a081c774b66884289335c290cbe-f15a2c1c-582b-4c51-acf2-ab6d711d2c59/index.xml

から以下をDL

  • grpc_unity_package.zip
  • Grpc.Tools.zip

unityサンプルのDL

https://github.com/grpc/grpc/tree/67538122780f8a081c774b66884289335c290cbe

examples/csharp/HelloworldUnity にUnityサンプルプロジェクトがある

  1. examples/csharp/HelloworldUnity/Assets以下のScenesとScriptsを自分のプロジェクトのAssets以下に移す
  2. grpc_unity_package.zipを解凍して、Assets/Plugins以下に移す

参考

https://took.jp/unity-grpc-core/