13 lines
271 B
C#
13 lines
271 B
C#
using UnityEngine;
|
|
using System;
|
|
using System.Collections;
|
|
|
|
namespace Obi
|
|
{
|
|
[Serializable]
|
|
public class ObiThicknessDataChannel : ObiPathDataChannelIdentity<float>
|
|
{
|
|
public ObiThicknessDataChannel() : base(new ObiCatmullRomInterpolator()) { }
|
|
}
|
|
}
|