C# Class BEPUphysics.SolverSystems.SolverUpdateableChange

Stores an enqueued solver updateable addition or removal.
显示文件 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_oe property

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

ShouldAdd public_oe property

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