How can I Change level with NDisplay?

I’m working in an NDisplay project with 4.26. I have two screens rendering with the same computer, but when i change the level the application crash before open the level.
I tried to stream level, the application didn’t crash but only the master node change the level, the slave mantains in the older level.

What can I do for change the level correctly in both nodes?

Nobody can help me??

1 Like

In my recent nDisplay project, I solved it in this way.

  1. 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.

  2. 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.

  3. 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.

1 Like

can you teach me your cluster openlevel?thank U