mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
NetworkRigidbodyUnreliable forked as NetworkRigidbodyFastMode
This commit is contained in:
parent
47a8ef8db5
commit
861ded3e5f
@ -0,0 +1,115 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace Mirror
|
||||||
|
{
|
||||||
|
// [RequireComponent(typeof(Rigidbody))] <- OnValidate ensures this is on .target
|
||||||
|
[AddComponentMenu("Network/Network Rigidbody (Fast Mode)")]
|
||||||
|
public class NetworkRigidbodyFastMode : NetworkTransformFastMode
|
||||||
|
{
|
||||||
|
bool clientAuthority => syncDirection == SyncDirection.ClientToServer;
|
||||||
|
|
||||||
|
Rigidbody rb;
|
||||||
|
bool wasKinematic;
|
||||||
|
|
||||||
|
protected override void OnValidate()
|
||||||
|
{
|
||||||
|
// Skip if Editor is in Play mode
|
||||||
|
if (Application.isPlaying) return;
|
||||||
|
|
||||||
|
base.OnValidate();
|
||||||
|
|
||||||
|
// we can't overwrite .target to be a Rigidbody.
|
||||||
|
// but we can ensure that .target has a Rigidbody, and use it.
|
||||||
|
if (target.GetComponent<Rigidbody>() == null)
|
||||||
|
{
|
||||||
|
Debug.LogWarning($"{name}'s NetworkRigidbody.target {target.name} is missing a Rigidbody", this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// cach Rigidbody and original isKinematic setting
|
||||||
|
protected override void Awake()
|
||||||
|
{
|
||||||
|
// we can't overwrite .target to be a Rigidbody.
|
||||||
|
// but we can use its Rigidbody component.
|
||||||
|
rb = target.GetComponent<Rigidbody>();
|
||||||
|
if (rb == null)
|
||||||
|
{
|
||||||
|
Debug.LogError($"{name}'s NetworkRigidbody.target {target.name} is missing a Rigidbody", this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
wasKinematic = rb.isKinematic;
|
||||||
|
base.Awake();
|
||||||
|
}
|
||||||
|
|
||||||
|
// reset forced isKinematic flag to original.
|
||||||
|
// otherwise the overwritten value would remain between sessions forever.
|
||||||
|
// for example, a game may run as client, set rigidbody.iskinematic=true,
|
||||||
|
// then run as server, where .iskinematic isn't touched and remains at
|
||||||
|
// the overwritten=true, even though the user set it to false originally.
|
||||||
|
public override void OnStopServer() => rb.isKinematic = wasKinematic;
|
||||||
|
public override void OnStopClient() => rb.isKinematic = wasKinematic;
|
||||||
|
|
||||||
|
// overwriting Construct() and Apply() to set Rigidbody.MovePosition
|
||||||
|
// would give more jittery movement.
|
||||||
|
|
||||||
|
// FixedUpdate for physics
|
||||||
|
void FixedUpdate()
|
||||||
|
{
|
||||||
|
// who ever has authority moves the Rigidbody with physics.
|
||||||
|
// everyone else simply sets it to kinematic.
|
||||||
|
// so that only the Transform component is synced.
|
||||||
|
|
||||||
|
// host mode
|
||||||
|
if (isServer && isClient)
|
||||||
|
{
|
||||||
|
// in host mode, we own it it if:
|
||||||
|
// clientAuthority is disabled (hence server / we own it)
|
||||||
|
// clientAuthority is enabled and we have authority over this object.
|
||||||
|
bool owned = !clientAuthority || IsClientWithAuthority;
|
||||||
|
|
||||||
|
// only set to kinematic if we don't own it
|
||||||
|
// otherwise don't touch isKinematic.
|
||||||
|
// the authority owner might use it either way.
|
||||||
|
if (!owned) rb.isKinematic = true;
|
||||||
|
}
|
||||||
|
// client only
|
||||||
|
else if (isClient)
|
||||||
|
{
|
||||||
|
// on the client, we own it only if clientAuthority is enabled,
|
||||||
|
// and we have authority over this object.
|
||||||
|
bool owned = IsClientWithAuthority;
|
||||||
|
|
||||||
|
// only set to kinematic if we don't own it
|
||||||
|
// otherwise don't touch isKinematic.
|
||||||
|
// the authority owner might use it either way.
|
||||||
|
if (!owned) rb.isKinematic = true;
|
||||||
|
}
|
||||||
|
// server only
|
||||||
|
else if (isServer)
|
||||||
|
{
|
||||||
|
// on the server, we always own it if clientAuthority is disabled.
|
||||||
|
bool owned = !clientAuthority;
|
||||||
|
|
||||||
|
// only set to kinematic if we don't own it
|
||||||
|
// otherwise don't touch isKinematic.
|
||||||
|
// the authority owner might use it either way.
|
||||||
|
if (!owned) rb.isKinematic = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnTeleport(Vector3 destination)
|
||||||
|
{
|
||||||
|
base.OnTeleport(destination);
|
||||||
|
|
||||||
|
rb.position = transform.position;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnTeleport(Vector3 destination, Quaternion rotation)
|
||||||
|
{
|
||||||
|
base.OnTeleport(destination, rotation);
|
||||||
|
|
||||||
|
rb.position = transform.position;
|
||||||
|
rb.rotation = transform.rotation;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9f830b261ed7644a4b1cc262cf36fc96
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {fileID: 2800000, guid: 7453abfe9e8b2c04a8a47eb536fe21eb, type: 3}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
Loading…
Reference in New Issue
Block a user