Hello. I have a project I mainly worked on last year, using Urho3D commit 7b4dab378381d9cd960aef23048e3a74fbac59d9 (latest at the time I started). I’ve now updated Urho3D and have run into this problem:
SubscribeToEvent(node, E_INTERCEPTNETWORKUPDATE, URHO3D_HANDLER(MyComponent, HandleInterceptNetworkUpdate));
node->SetInterceptNetworkUpdate(“Network Position”, true);
node->SetInterceptNetworkUpdate(…)
// …
// void MyComponent::HandleInterceptNetworkUpdate(…) {
String name = event_data[P_NAME].GetString();
// name.Length() == 0
This worked fine before, (name == “Network Position” / “Network Rotation”), now it’s not working anymore. Not sure what the problem is. Any advice?
Update: Not sure what was wrong, switched back to version 1.7 instead.