BEPUphysics.OtherSpaceStages.SpaceObjectBuffer.Add C# (CSharp) Method

Add() public method

Adds a space object to the buffer. It will be added to the space the next time the buffer is flushed.
public Add ( ISpaceObject spaceObject ) : void
spaceObject ISpaceObject Space object to add.
return void
        public void Add(ISpaceObject spaceObject)
        {
            objectsToChange.Enqueue(new SpaceObjectChange(spaceObject, true));
        }