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.
20 lines
611 B
20 lines
611 B
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.Splines
|
|
{
|
|
/// <summary>
|
|
/// An interface that represents ISplineContainer on a MonoBehaviour to enable Spline tools in the Editor.
|
|
/// </summary>
|
|
public interface ISplineContainer
|
|
{
|
|
/// <summary>
|
|
/// A collection of splines contained in this MonoBehaviour.
|
|
/// </summary>
|
|
IReadOnlyList<Spline> Splines { get; set; }
|
|
|
|
/// <summary>
|
|
/// A collection of KnotLinks to maintain valid links between knots.
|
|
/// </summary>
|
|
KnotLinkCollection KnotLinkCollection { get; }
|
|
}
|
|
}
|