Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hxhb/ue4-protobuf
https://github.com/hxhb/ue4-protobuf
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hxhb/ue4-protobuf
- Owner: hxhb
- Created: 2019-10-09T10:44:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T03:06:03.000Z (over 4 years ago)
- Last Synced: 2024-11-06T09:39:38.993Z (about 1 month ago)
- Language: C++
- Size: 2.03 MB
- Stars: 69
- Watchers: 4
- Forks: 34
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-unreal - ue4-protobuf - This is an Unreal Engine 4 plugin that integrates Protobuf into the project without requiring you to add system PATH or anything else. (Serializing)
README
### What is this?
This is an Unreal Engine 4 plugin that integrates [Protobuf](https://github.com/protocolbuffers/protobuf) into the project without requiring you to add system PATH or anything else.
### How do use?
1. add the plugin to the project and enable it.
2. add the following property to `build.cs` of the project :```csharp
PublicDependencyModuleNames.Add("Protobuf");
bEnableUndefinedIdentifierWarnings = false;
bEnableExceptions = true;
```4. Create `.proto` file into project source code folder
5. Launch the Project in Editor, Click the `Protoc` button.### Protobuf Version
- Protobuf v3.5.1