コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】スクリプトから Spline に Knot を追加する例

ソースコード

using UnityEngine;
using UnityEngine.Splines;

public class Example : MonoBehaviour
{
    [SerializeField] private SplineContainer m_splineContainer;

    private void Awake()
    {
        var spline = m_splineContainer.Spline;

        spline.Add( new( Vector3.left  ) );
        spline.Add( new( Vector3.zero  ) );
        spline.Add( new( Vector3.right ) );
    }
}