This repository is in Beta, we do not provide support for it.
- A Furioos Account on www.furioos.com.
- Then choose the application you want to use with the SDK and create a SDK link.
Tested on Unreal Engine 4.25.3 and 4.26-preview
- Download the latest version of the Zip package.
- Create a folder named "Plugins" in your project folder.
- Extract the "FS_WebSocket" into Plugins Folder.
- Launch your Unreal project (if your version of UE is different from 4.25.3, you will need a development IDE installed to compile the plugin again).
- Put the blueprint FS_WebSocket_BP in your scene
You'll need to have the FS_WebSocket_BP blueprint in each scene with SDK interactions.
When the plugin is installed and enabled, you will find a scene example with Blueprint and C++ class in LexelExample (to see the folders :)
To connect to the websocket server, you will have to bind your event as shown in the example above.
Bind an event that will be called when the application is connected and signed in to the Furioos streaming server and ready to communicate.
Bind an event that will be called everytime data is received.
FString data
: The parsed data
Bind an event that will be called each time an error is fired.
FString error
Bind an event that will be called when the connection with Furioos streaming server is closed.
You can call this function to connect your application to the Furioos Streaming Server.
Send data to the JS client
FString data
: The data to send