コード例 #1
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Raycast(ref Ray2D ray, out RayHit2D hit)
 {
     return(Geom2D.Raycast(ref this, ref ray, out hit));
 }
コード例 #2
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Raycast(ref Ray2D ray, out float dist)
 {
     return(Geom2D.Raycast(ref this, ref ray, out dist));
 }
コード例 #3
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Raycast(ref Ray2D ray)
 {
     return(Geom2D.Raycast(ref this, ref ray));
 }