Axiom.Samples.SampleContext.RecoverLastSample C# (CSharp) Méthode

RecoverLastSample() protected méthode

Recovers the last sample after a reset. You can override in the case that the last sample is destroyed in the process of resetting, and you have to recover it through another means.
protected RecoverLastSample ( ) : void
Résultat void
		protected virtual void RecoverLastSample()
		{
			RunSample( this.LastSample );
			this.LastSample.RestoreState( this.LastSampleState );
			this.LastSample = null;
			this.LastSampleState.Clear();
		}