예제 #1
0
파일: World.cs 프로젝트: colgreen/box2dx
		/// <summary>
		/// Re-filter a shape. This re-runs contact filtering on a shape.
		/// </summary>		
		public void Refilter(Shape shape)
		{
			Box2DXDebug.Assert(_lock == false);
			shape.RefilterProxy(_broadPhase, shape.GetBody().GetXForm());
		}
예제 #2
0
파일: World.cs 프로젝트: litdev1/LitDev
 public void Refilter(Shape shape)
 {
     Box2DXDebug.Assert(!this._lock);
     shape.RefilterProxy(this._broadPhase, shape.GetBody().GetXForm());
 }