项目作者: hdhauk

项目描述 :
ZeroMQ plugin for UE4
高级语言: C#
项目地址: git://github.com/hdhauk/UnrealZeroMQ.git
创建时间: 2019-02-13T14:14:33Z
项目社区:https://github.com/hdhauk/UnrealZeroMQ

开源协议:

下载


UnrealZeroMQ

Unreal Engine 4 plugin for ZeroMQ with bindings from zmqcpp.

Usage

  1. Copy this repository into the Plugins folder of your Unreal project.
  2. Verify that the plugin is enabled in the plugin menu inside the Unreal Editor.
  3. In your module’s build file (<your project name>.Build.cs) add ZeroMQ to the module dependency list:
    1. ...
    2. PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ZeroMQ" });
    3. // add this! ^^^^^^^^
    4. ...
  4. Test that it works!
    ```cpp

    include


// place this somewhere it’ll be run (e.g. BeginPlay() of your gamemode or similar)
int major, minor, patch;
zmq::version(&major, &minor, &patch);
UE_LOG(LogTemp, Log, TEXT(“ZeroMQ version: v%d.%d.%d), major, minor, patch);

```

Support

  • Windows (x64 and x86)
  • Linux
  • MacOS