C# Class BEPUphysics.SolverSystems.SolverUpdateableChange

Stores an enqueued solver updateable addition or removal.
Show file Open project: Indiefreaks/igf

Public Properties

Property Type Description
Item SolverUpdateable
ShouldAdd bool

Public Methods

Method Description
SolverUpdateableChange ( bool shouldAdd, SolverUpdateable item )

Constructs a new solver updateable change.

Method Details

SolverUpdateableChange() public method

Constructs a new solver updateable change.
public SolverUpdateableChange ( bool shouldAdd, SolverUpdateable item )
shouldAdd bool Whether the item is going to be added or removed.
item SolverUpdateable Item to add or remove.

Property Details

Item public property

Item being added or removed.
public SolverUpdateable,BEPUphysics.SolverSystems Item
return SolverUpdateable

ShouldAdd public property

Whether the item is going to be added or removed.
public bool ShouldAdd
return bool