You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
346 B
C#
15 lines
346 B
C#
|
3 years ago
|
using Digger.Modules.AdvancedOperations.Splines;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Digger.Modules.AdvancedOperations.Sources
|
||
|
|
{
|
||
|
|
public class SplineMaster : MonoBehaviour
|
||
|
|
{
|
||
|
|
[SerializeField] private BezierSpline spline;
|
||
|
|
|
||
|
|
public BezierSpline Spline {
|
||
|
|
get => spline;
|
||
|
|
set => spline = value;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|