Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 815 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 815 Bytes

UE4JwRPC_Example

UE4 project containing several samples to show how to use UE4JwRPC


currently there are 2 samples :

  1. SimpleChatCPP

    client for a simple public chat room that anyone can join by a username and starts typing. uses C++ APIs of the plugin.

  2. SimpleChatBP

    Blueprint only version of the above.


how to run server ?

the server is written in nodejs so first of all install nodejs, then run the following commands to install the dependencies and launch the server.

cd Server
npm install
node SimpleChatServer.js 

now our server should be ready and listening for client connections.


how to run client samples ?

from editor or standalone build open the map you want. (Map_SimpleChatBP, Map_SimpleChatCPP, ... )