示例#1
0
 public Batch(List<_collider> colliders, CAABB bound)
 {
     this.colliders = colliders;
     this.bound = bound;
 }
示例#2
0
 public void MakeBound(AABB nbound)
 {
     if (cbound == null)
         cbound = new CAABB(nbound.x, nbound.y, nbound.w, nbound.h);
     else cbound.aabb = nbound;
 }