Exemplo n.º 1
0
 public Physics()
 {
     Collitions = new CollitionDetection();
 }
Exemplo n.º 2
0
 public bool IntersectPixels(GameObject otherObject)
 {
     return(CollitionDetection.IntersectPixels(transform, texture.Width, texture.Height, colorData,
                                               otherObject.transform, otherObject.texture.Width, otherObject.texture.Height, otherObject.colorData, this, otherObject));
 }