You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug appears when playing an animation like jumping and falling, not when walking
Reproduce Steps
Added the OwnerNetworkAnimator to the player armature
using System.Collections;
using System.Collections.Generic;
using Unity.Netcode.Components;
using UnityEngine;
public class OwnerNetworkAnimator : NetworkAnimator
{
protected override bool OnIsServerAuthoritative()
{
return false;
}
}
Actual Outcome
Warning messages saying [Netcode] Detected the Host is sending itself animation updates! Please report this issue.