Line.cs 663 B

12345678910111213141516171819
  1. // --------------------------------------------------------------------------------------------------------------------
  2. // <copyright file="Line.cs" company="Exit Games GmbH">
  3. // Part of: Photon Unity Networking Demos
  4. // </copyright>
  5. // <summary>
  6. // Original: http://catlikecoding.com/unity/tutorials/curves-and-splines/
  7. // Used in SlotRacer Demo
  8. // </summary>
  9. // <author>developer@exitgames.com</author>
  10. // --------------------------------------------------------------------------------------------------------------------
  11. using UnityEngine;
  12. namespace Photon.Pun.Demo.SlotRacer.Utils
  13. {
  14. public class Line : MonoBehaviour {
  15. public Vector3 p0, p1;
  16. }
  17. }