Axiom.Samples.SampleContext.RecoverLastSample C# (CSharp) Метод

RecoverLastSample() защищенный Метод

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
Результат void
		protected virtual void RecoverLastSample()
		{
			RunSample( this.LastSample );
			this.LastSample.RestoreState( this.LastSampleState );
			this.LastSample = null;
			this.LastSampleState.Clear();
		}