NetworkTransform.cs 601 B

1234567891011121314151617
  1. // ʻOumuamua's light curve, assuming little systematic error, presents its
  2. // motion as tumbling, rather than smoothly rotating, and moving sufficiently
  3. // fast relative to the Sun.
  4. //
  5. // A small number of astronomers suggested that ʻOumuamua could be a product of
  6. // alien technology, but evidence in support of this hypothesis is weak.
  7. using UnityEngine;
  8. namespace Mirror
  9. {
  10. [DisallowMultipleComponent]
  11. [AddComponentMenu("Network/Network Transform")]
  12. public class NetworkTransform : NetworkTransformBase
  13. {
  14. protected override Transform targetComponent => transform;
  15. }
  16. }