In my recent nDisplay project, I solved it in this way.
-
Use the Emit JSON Cluster Event node to send some message to the Master node, and then the Master node will deliver this message to all slave nodes(including Master it self)
In this Image I create a function called Cluster Open Level in my blueprint function library. -
Then I create an Actor Blueprint to listen to the cluster events.
According to my Cluster Open Level function, when it received a message which Name = “Open Level”, it will search the “LevelName” value from the Parameters, and then open the level.
Drag this actor into level. -
Replace the OpenLevel node with my Cluster Open Level
Have you learned about the official nDisplay Cluster Event Docs? Actually this docs solved lots of problem for me.


