コード例 #1
0
 public PathNode(string name, PathSegmentType type, string dependencyType)
 {
     Name           = name;
     Type           = type;
     DependencyType = dependencyType;
     TextLength     = GetTextLength(name, GUI.skin.font);
 }
コード例 #2
0
ファイル: PathSegment.cs プロジェクト: gitter-badger/Yardarm
 public PathSegment(string value, PathSegmentType type)
 {
     Value = value;
     Type  = type;
 }
コード例 #3
0
ファイル: PathSegment.cs プロジェクト: gitter-badger/Yardarm
 public void Deconstruct(out string value, out PathSegmentType type)
 {
     value = Value;
     type  = Type;
 }
コード例 #4
0
 public PathSegment(string name, PathSegmentType type)
 {
     Name = name;
     Type = type;
 }