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
Debug.LogError($"[{networkRigidbodyBase.GetType().Name}][Not Implemented] Tick synchronizing two bodies owned by different clients is not yet supported!");
906
+
returnfalse;
907
+
}
908
+
909
+
if(!UseRigidBodyForMotion)
910
+
{
911
+
Debug.LogError($"[{GetType().Name}] {name} does not have {nameof(UseRigidBodyForMotion)} set and this action requires it to be set first!");
912
+
returnfalse;
913
+
}
914
+
915
+
if(IsKinematic())
916
+
{
917
+
Debug.LogError($"[{GetType().Name}] Requires {name} to be non-kinematic but it is currently kinematic!");
918
+
returnfalse;
919
+
}
920
+
921
+
if(networkRigidbodyBase.IsKinematic())
922
+
{
923
+
Debug.LogError($"[{networkRigidbodyBase.GetType().Name}] Requires {networkRigidbodyBase.name} to be non-kinematic but it is currently kinematic!");
Debug.LogError($"[{networkRigidbodyBase.GetType().Name}][Circular Reference] {networkRigidbodyBase.name} already has {name} included for tick synchronization! Remove {name} prior to adding {networkRigidbodyBase.name}.");
0 commit comments