NetworkTransform.cs 549 B

12345678910111213141516
  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. public class NetworkTransform : NetworkTransformBase
  12. {
  13. protected override Transform targetComponent => transform;
  14. }
  15. }