赞
踩
开发环境:
系统:win7系统64位内存16G
软件:Unity2019
参考资料/博客:https://zhuanlan.zhihu.com/p/75510885
这篇博客主要实现在Unity中使用Protobuf,包括Protobuf下载、Protobuf文件编译、Unity导入Protobuf、Unity中使用Protobuf
一、Protobuf下载
1、通过github下载
https://github.com/protocolbuffers/protobuf/releases
编译工具:
用于UnityProtubuf源码:
2、csdn下载
编译工具:https://download.csdn.net/download/yyl80/12504824
Protobuf C#源码:https://download.csdn.net/download/yyl80/12504817
二、protobuf文件编译
1、利用记事本建立test.txt文件,输入:
syntax = "proto3";
package Mytest;
import "google/protobuf/timestamp.proto";
option csharp_namespace = "Mytest.Detatil";
message Test_Person
{
string name =1;
int32 level =2;
string profession = 3;
enum area
{
ch
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。