22 lines
616 B
C#
22 lines
616 B
C#
using NodeCanvas.Framework;
|
|
|
|
|
|
namespace NodeCanvas.DialogueTrees
|
|
{
|
|
|
|
public class DTConnection : Connection
|
|
{
|
|
|
|
///----------------------------------------------------------------------------------------------
|
|
///---------------------------------------UNITY EDITOR-------------------------------------------
|
|
#if UNITY_EDITOR
|
|
|
|
public override ParadoxNotion.PlanarDirection direction {
|
|
get { return ParadoxNotion.PlanarDirection.Vertical; }
|
|
}
|
|
|
|
#endif
|
|
///----------------------------------------------------------------------------------------------
|
|
|
|
}
|
|
} |