public ComponentInterpolator(NetworkObject nit, Component component) { this.nit = nit; this.component = component; }
public TransformInterpolator(NetworkObject nit, Transform transform) : base(nit) { this.transform = transform; reset(ref state); }
public RigidBodyInterpolator(NetworkObject nit, Rigidbody rbody) : base(nit) { this.rbody = rbody; reset(ref state); }
public ComponentInterpolator(NetworkObject nit) { this.nit = nit; }