C# Class BEPUphysics.UpdateableSystems.Updateable

Convenience superclass of Updateables. Updateables are updated by the Space at various points during the execution of the engine to support easy extensions.
Inheritance: ISpaceUpdateable
Datei anzeigen Open project: Indiefreaks/igf

Private Properties

Property Type Description

Public Methods

Method Description
OnAdditionToSpace ( ISpace newSpace ) : void

Called after the object is added to a space.

OnRemovalFromSpace ( ISpace oldSpace ) : void

Called before an object is removed from its space.

Protected Methods

Method Description
Updateable ( ) : System.Collections.Generic

Method Details

OnAdditionToSpace() public method

Called after the object is added to a space.
public OnAdditionToSpace ( ISpace newSpace ) : void
newSpace ISpace Space to which the object was added.
return void

OnRemovalFromSpace() public method

Called before an object is removed from its space.
public OnRemovalFromSpace ( ISpace oldSpace ) : void
oldSpace ISpace Space from which the object was removed.
return void

Updateable() protected method

protected Updateable ( ) : System.Collections.Generic
return System.Collections.Generic