You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-69820 Motion Controller meshes do not track with Motion Controller position within VRMode
This issue was introduced by the fix that allowed MotionControllerComponents to correctly replicate in networked games. Previously the local motion controllers overrode the remote controller's positions. This was fixed by only updating if HasLocalNetOwner was true. But that was returning false for VREditorAvatarActor, as it's Owner was null. So for now, VREditorAvatarActor's HasLocalNetOwner now always returns true. When using Multi-User with two VRMode editors, we might have to do something else here for when this is called by MotionControllerComponent::PollControllerState() #rb Lauren.Ridge #ROBOMERGE-OWNER: lina.halper #ROBOMERGE-AUTHOR: joe.conley #ROBOMERGE-SOURCE: CL 5391928 in //UE4/Release-4.22/... via CL 5391930 #ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) [CL 5394032 by joe conley in Dev-Anim branch]
This commit is contained in:
@@ -34,6 +34,12 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
virtual bool HasLocalNetOwner() const override
|
||||
{
|
||||
// TODO: When using Multi-User with two VRMode editors, we might have to do something else here for when this is called by MotionControllerComponent::PollControllerState()
|
||||
return true;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
/** Our avatar's head mesh */
|
||||
|
||||
Reference in New Issue
Block a user