BEPUphysics.OtherSpaceStages.SpaceObjectBuffer.Add C# (CSharp) Méthode

Add() public méthode

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.
Résultat void
        public void Add(ISpaceObject spaceObject)
        {
            objectsToChange.Enqueue(new SpaceObjectChange(spaceObject, true));
        }