Mirror intergrated, WIP on Client Prediction v1

This commit is contained in:
Sewmina
2022-06-14 01:57:42 +05:30
parent 4435d769a6
commit cdaa627f52
14571 changed files with 4207871 additions and 4127496 deletions

View File

@@ -0,0 +1,14 @@
using System;
using UnityEngine;
namespace Mirror.Experimental
{
[DisallowMultipleComponent]
// Deprecated 2022-01-18
[Obsolete("Use the default NetworkTransform instead, it has proper snapshot interpolation.")]
[AddComponentMenu("")]
public class NetworkTransform : NetworkTransformBase
{
protected override Transform targetTransform => transform;
}
}