Does web remote control work during runtime

Actually, it works with Custom Events too. I’ve tried all three methods: function, custom event in bp actor, custom event in level bp and all three are working fine via postman. For those whom it will be of help while googling:

I use UE 5.3
In Postman:

  1. Choose GET on the left, write down:
    localhost:30010/remote/preset/yoursavedpreset
    and click SEND on the right.

You will receive a list of your exposed functions from RemoteControlPlugin in UE 5.3.
You can use any kind of event, function, seetings etc., all works.

  1. Now, you want to trigger event of function? Change GET to PUT on the left
    Enter address: localhost:30010/remote/object/call
    DO NOT CLICK SEND YET

Click Body tab and insert this:
{
“objectPath” :“/Game/Maps/mainlevel.mainlevel:PersistentLevel.BP_LastResultCENTER_C_1”,
“functionName” : “PrintResult”,
“parameters”: {}
}

For Objectpath use path from your list of functions from point 1 !
Function name is function name, you’ll find it in the same list!
Parameters: i leave it blank, as I want just to fire the event.

Hope that helps!