You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
667 B

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BezierControlPointMode.cs" company="Exit Games GmbH">
// Part of: Photon Unity Networking Demos
// </copyright>
// <summary>
// Original: http://catlikecoding.com/unity/tutorials/curves-and-splines/
// Used in SlotRacer Demo
// </summary>
// <author>developer@exitgames.com</author>
// --------------------------------------------------------------------------------------------------------------------
namespace Photon.Pun.Demo.SlotRacer.Utils
{
public enum BezierControlPointMode {
Free,
Aligned,
Mirrored
}
}