コード例 #1
0
ファイル: PathEdge.cs プロジェクト: OggYiu/game_jam_project
 public PathEdge( Vector2 source, Vector2 destination, NavGraphEdge.EdgeType edgeType=NavGraphEdge.EdgeType.normal )
 {
     source_ = source;
     destination_ = destination;
     edgeType_ = edgeType;
 }
コード例 #2
0
 public PathEdge(Vector2 source, Vector2 destination, NavGraphEdge.EdgeType edgeType = NavGraphEdge.EdgeType.normal)
 {
     source_      = source;
     destination_ = destination;
     edgeType_    = edgeType;
 }