C# Class AlienEngine.Core.Physics.Constraints.SolverUpdateableChange

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

Public Properties

Property Type Description
Item AlienEngine.Core.Physics.Constraints.SolverUpdateable
ShouldAdd bool

Public Methods

Method Description
SolverUpdateableChange ( bool shouldAdd, AlienEngine.Core.Physics.Constraints.SolverUpdateable item )

Constructs a new solver updateable change.

Method Details

SolverUpdateableChange() public method

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

Property Details

Item public property

Item being added or removed.
public SolverUpdateable,AlienEngine.Core.Physics.Constraints Item
return AlienEngine.Core.Physics.Constraints.SolverUpdateable

ShouldAdd public property

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