Axiom.Core.Entity.RemoveSoftwareAnimationRequest C# (CSharp) Метод

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

protected RemoveSoftwareAnimationRequest ( bool normalsAlso ) : void
normalsAlso bool
Результат void
		protected void RemoveSoftwareAnimationRequest( bool normalsAlso )
		{
			if ( this.softwareAnimationRequests == 0 ||
				 ( normalsAlso && this.softwareAnimationNormalsRequests == 0 ) )
			{
				throw new Exception( "Attempt to remove nonexistant request, in Entity.RemoveSoftwareAnimationRequest" );
			}
			this.softwareAnimationRequests--;
			if ( normalsAlso )
			{
				this.softwareAnimationNormalsRequests--;
			}
		}