https://github.com/hxhb/ue4-protobuf
https://github.com/hxhb/ue4-protobuf
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hxhb/ue4-protobuf
- Owner: hxhb
- Created: 2019-10-09T10:44:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T03:06:03.000Z (about 6 years ago)
- Last Synced: 2025-07-02T06:02:40.508Z (about 1 year ago)
- Language: C++
- Size: 2.03 MB
- Stars: 73
- 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)
- 3d-resources - Ue4 Protobuf
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