C# Class SuperSquid.Entities.Behaviors.SquidBehavior

Inheritance: Behavior, IDisposable
Datei anzeigen Open project: WaveEngine/QuickStarters Class Usage Examples

Public Methods

Method Description
Appear ( ) : void

Play the appear animation

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Protected Methods

Method Description
DefaultValues ( ) : void
Initialize ( ) : void

Performs further custom initialization for this instance.

By default this method does nothing.

ResolveDependencies ( ) : void
Update ( System.TimeSpan gameTime ) : void

Allows this instance to execute custom logic during its Update.

This method will not be executed if the T:WaveEngine.Framework.Component, or the T:WaveEngine.Framework.Entity owning it are not Active.

Private Methods

Method Description
StopBubbles ( ) : void

Method Details

Appear() public method

Play the appear animation
public Appear ( ) : void
return void

DefaultValues() protected method

protected DefaultValues ( ) : void
return void

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

Initialize() protected method

Performs further custom initialization for this instance.
By default this method does nothing.
protected Initialize ( ) : void
return void

ResolveDependencies() protected method

protected ResolveDependencies ( ) : void
return void

Update() protected method

Allows this instance to execute custom logic during its Update.
This method will not be executed if the T:WaveEngine.Framework.Component, or the T:WaveEngine.Framework.Entity owning it are not Active.
protected Update ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The game time.
return void