コード例 #1
0
 public CollisionPair(CollisionShell a, CollisionShell b, Vec2 force)
 {
     this.a        = a;
     this.b        = b;
     this.userData = force;
 }
コード例 #2
0
 public void Remove(CollisionShell Shell)
 {
     shellList.Remove(Shell);
 }
コード例 #3
0
 public CollisionPair(CollisionShell a, CollisionShell b)
 {
     this.a = a;
     this.b = b;
 }
コード例 #4
0
 public void Add(CollisionShell Shell)
 {
     shellList.Add(Shell);
 }
コード例 #5
0
 public void Remove(CollisionShell Shell)
 {
     shellList.Remove(Shell);
 }
コード例 #6
0
 public void Add(CollisionShell Shell)
 {
     shellList.Add(Shell);
 }
コード例 #7
0
 public CollisionPair(CollisionShell a, CollisionShell b, Vec2 force)
 {
     this.a = a;
     this.b = b;
     this.userData = force;
 }
コード例 #8
0
 public CollisionPair(CollisionShell a, CollisionShell b)
 {
     this.a = a;
     this.b = b;
 }